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!");
}
}
相关文章
- 07-04C#里面sql语句前面加@符号的用法
- 07-04C# sql语句拼接时 like情况的防sql注入的用法
- 07-04C#中DBNull.Value和Null的用法和区别
- 07-04C#里sqlDataAdapter.fill(DataSet,String)的用法
- 07-04C#和sql语句中切割函数SUBSTRING的用法和区别
- 07-04C# EF创建及更新数据库 Database.SetInitializer用法
- 07-04substring(C#,java,javascript,SqlServer)用法总结
- 07-04c#事务用法
- 07-04(转)C#中Trim()、TrimStart()、TrimEnd()的用法 .
- 07-04用c#开发微信 (10) JS-SDK 基本用法- 分享接口“发送到朋友”