首页 > 其他 > 详细

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

时间:2018-04-07 15:34:32      阅读:225      评论:0      收藏:0      [点我收藏+]

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(网上找的,仅自用,非原创)

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!