第四节课第一题

/**

         * 作业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 ();
          ···
15.png
17.jpg

你可能感兴趣的:(第四节课第一题)