美文网首页
第五次作业第一题

第五次作业第一题

作者: 似是而非_30f0 | 来源:发表于2018-11-01 09:25 被阅读0次

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    namespace ConsoleApplication6

    {

        class Program

        {

            static void Main(string[] args)

            {//要求用户输入两个数a、b,如果a被b整除或者a加b大于100,则输出a的值,否则输出b的值

                Console.WriteLine("请输入a的值");

                int a = Convert.ToInt32(Console.ReadLine());

                Console.WriteLine("请输入b的值");

                int b = Convert.ToInt32(Console.ReadLine());

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

                {

                    Console.WriteLine(a);

                }

                else

                {

                    Console.WriteLine(b);

                }

                Console.ReadKey();

            }

            }

    }

    相关文章

      网友评论

          本文标题:第五次作业第一题

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