首页 > 其他 > 详细

简单计算器

时间:2019-09-07 23:20:31      阅读:106      评论:0      收藏:0      [点我收藏+]

简单计算器

实现一个简单控制台应用程序的计算器
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DesignModel
{
   public class Program
    {
       public static void Main(string[] args)
        {
            #region  计算器

            try
            {
                Console.WriteLine("请输入数字A:");
                string NumberA = Console.ReadLine();
                Console.WriteLine("请选择运算(+ - * /)");
                string strOption = Console.ReadLine();
                  Console.WriteLine("请输入数字B:");
                string NumberB = Console.ReadLine();
                string Result = "";
                switch (strOption)
                {
                    case "+":
                        Result =Convert.ToString( Convert.ToInt32( NumberA )+ Convert.ToInt32( NumberB));
                        break;
                    case "-":
                        Result = Convert.ToString(Convert.ToInt32(NumberA) - Convert.ToInt32(NumberB));
                        break;
                    case "*":
                         Result = Convert.ToString(Convert.ToInt32(NumberA)* Convert.ToInt32(NumberB));
                        break;
                    case "/":
                        //三目运算
                      NumberB=  NumberB != "0" ? Result = Convert.ToString(Convert.ToInt32(NumberA) / Convert.ToInt32(NumberB)) : Result = "除数不能是0";

                        break;

                }
                Console.WriteLine("结果是:"+Result);
                Console.ReadLine();

            }
            catch (Exception ex)
            {

                Console.WriteLine(ex);
            }
            #endregion

        }
    }
}

简单计算器

原文:https://www.cnblogs.com/zaohuojian/p/11483636.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!