美文网首页
20181213作业

20181213作业

作者: 楚荷音 | 来源:发表于2018-12-13 11:38 被阅读0次


    作业1

    编程实现如下计算器效果:
    计算机

    代码

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

    namespace ConsoleApplication1
    {
    class Program
    {
    static void Main(string[] args)
    {
    try
    {
    Console.WriteLine("请选择运算:1.加法 2.减法 3.乘法 4.除法");
    int a = Convert.ToInt32(Console.ReadLine());
    if (a ==1||a == 2 || a == 3 || a == 4)
    {
    Console.WriteLine("请输入第一个数字:");
    int n1 = Convert.ToInt32(Console.ReadLine());
    Console.WriteLine("请输入第一个数字:");
    int n2 = Convert.ToInt32(Console.ReadLine());
    double sum = 0;
    if (a == 1)
    {
    sum = n1 + n2;
    }
    if (a == 2)
    {
    sum = n1 - n2;
    }
    if (a == 3)
    {
    sum = n1 * n2;
    }
    if (a == 4)
    {
    sum = n1 / n2;
    }
    Console.WriteLine("运算结果是:{0}", sum);
    Console.ReadLine();
    }
    else
    {
    Console.WriteLine("输入有误,请重新输入");
    }
    Console.ReadLine();
    }
    catch
    {
    Console.WriteLine("输入有误,请重新输入");
    }

        }
    }
    

    }

    效果


    image.png

    相关文章

      网友评论

          本文标题:20181213作业

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