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

第5节课的第一个作业

作者: Deku啊 | 来源:发表于2018-11-01 08:49 被阅读0次

#作业目标:要求用户输入两个数a、b,如果a被b整除或者a加b大于100,则输出a的值,否则输出b的值

##代码

Console.WriteLine("输入数字a");

            string str_number1 = Console.ReadLine();

            int a = Convert.ToInt32(str_number1);

            Console.WriteLine("输入数字b");

            string str_number2 = Console.ReadLine();

            int b = Convert.ToInt32(str_number2);

            if (a % b == 0 || a + b > 100)

            { Console.WriteLine("{0}",a);}

            else{Console.WriteLine("{0}",b);}

            Console.WriteLine("程序运行结束");

            Console.ReadKey();

###实际效果:

相关文章

网友评论

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

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