⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 choosesubject.txt

📁 c语言多个实用小程序,会有帮助的~ 自己瞎编的
💻 TXT
字号:
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!");
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -