作业

作者: 邙川 | 来源:发表于2018-10-31 09:42 被阅读0次
    • 作业1:如果老苏的(chinese music) 语文成绩大于90并且音乐成绩大于80语文成绩等于100并且音乐成绩大于70,则奖励100元. * */ ··· //输入语文成绩Console.WriteLine("请输入你的语文成绩"); //转换int chinese=Convert.ToInt32(Console.ReadLine()); //输入音乐成绩Console.WriteLine("请输入你的音乐成绩"); //转换int music=Convert.ToInt32(Console.ReadLine()); bool b = chinese > 90 && music > 80; Console.WriteLine(b); bool c = chinese == 100 && music > 70; if (c) { Console.WriteLine("你可以获得100元的奖励"); } bool d = chinese != 100 || music <= 70; if (d) { Console.WriteLine("没有奖励"); } Console .ReadKey (); --------

    相关文章

      网友评论

          本文标题:作业

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