美文网首页
第4节课第一个作业

第4节课第一个作业

作者: Deku啊 | 来源:发表于2018-10-31 14:40 被阅读0次

    #作业目标:作业1:语文和数学有一门是大于90分的

    ##代码:

    Console.WriteLine ("请输入小苏的语文成绩");

                string str_chinese = Console.ReadLine();

                int Chinese = Convert.ToInt32(str_chinese);

              Console.WriteLine  ("请输入小苏的数学成绩");

              string str_math = Console.ReadLine();

              int Math = Convert.ToInt32(str_math);

                bool b=Chinese>90||Math>90;

                Console.WriteLine(b);

                Console.ReadKey();

    ###实际效果

    相关文章

      网友评论

          本文标题:第4节课第一个作业

          本文链接:https://www.haomeiwen.com/subject/lwdatqtx.html