第五次作业第一题

2018-11-01  本文已影响0人  孤独是种安全感_b7bf

代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
/**
* 1要求用户输入两个数a、b,如果a被b整除或者a加b大于100,则输出a的值,否则输出b的值
*
* */
//请用户输入a
Console.WriteLine("请输入a的值为:");
//接收用户输入
string stra = Console.ReadLine();
//转换数字型数值
int a = Convert.ToInt32(stra);

        Console.WriteLine("请输入b的值为:");
        string strb = Console.ReadLine();
        int b = Convert.ToInt32(strb);


        //判断
        if (a % b == 0 || a + b > 100)
        {
            Console.WriteLine(a);
        }
        else
        {
            Console.WriteLine(b); 
        }
        Console.ReadKey();
    }
}

}

效果

IMG_20181101_084643.jpg
上一篇下一篇

猜你喜欢

热点阅读