源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

choosesubject c# switch

  • 时间:2022-12-13 05:47 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:choosesubject c# switch
[u]复制代码[/u] 代码如下:
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!");     } }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部