码迷,mamicode.com
首页 > 其他好文 > 详细

choosesubject(网上找的,仅自用,非原创)

时间:2018-04-07 16:09:59      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:bye   sys   post   sorry   efault   lin   this   def   ase   

using System;
class ChooseSubject
{
static void Main()
{
int i;
string str;
Console.WriteLine ("Please choose your favorite subjects:-1 is quit.");
Console.WriteLine ("1.Chinese.");
Console.WriteLine ("2.Maths.");
Console.WriteLine ("3.English.");
Console.WriteLine ("4.Physical.");
Console.WriteLine ("-1 is quit.");
do
{
str=Console.ReadLine ();
i=Int32.Parse (str);
switch(i)
{
case 1:
Console.WriteLine ("You like chinese very much.");
break;
case 2:
Console.WriteLine ("You like maths very much.");
break;
case 3:
Console.WriteLine ("You like english very much.");
break;
case 4:
Console.WriteLine ("You like physical very much.");
break;
case -1:
break;
default:
Console.WriteLine ("I‘m sorry.You can‘t choose this subject.");
break;
}

}while(i!=-1);
Console.WriteLine ("Byebye!");
}
}

choosesubject(网上找的,仅自用,非原创)

标签:bye   sys   post   sorry   efault   lin   this   def   ase   

原文地址:https://www.cnblogs.com/hsyv123ve/p/8733250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!