亲宝软件园·资讯

展开

c# switch choosesubject c# switch

人气:0
想了解choosesubject c# switch的相关内容吗,在本文为您仔细讲解c# switch的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:c#,switch,下面大家一起来学习吧。
复制代码 代码如下:

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!");
    }
}

加载全部内容

相关教程
猜你喜欢
用户评论