Gary_chen+ 2021-10-14 22:22 采纳率: 50%
浏览 47
已结题

C#编写一个计算器,要求输入带有运算符的式子如1+1,3*4这类的,求提供一下代码,参考一下





//A.要求用户在表格中提供公式
//[INT][OPERATOR][INT]
//例如“1+1”或“3*4”或“160/40//B.提取2个数字字符串和运算符。
//2个数字字符串转换为实际数字。
//明智地选择类型!
//C.计算并显示结果

using System;

namespace advance_calculator
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Enter a formula in the form [INT][OPERATOR][INT]:");
            String strInput = Console.ReadLine();
            string tempnum = "";
            string tempoperator = "";
            foreach (char c in strInput)
            {
                if (c >= '0' && c <= '9')
                {
                    tempnum += c;
                }
                else if(c=='+'||c=='-'||c=='*'||c=='/')
                {
                    tempoperator += c;
                }

            }
            //int num1 = Convert.ToInt32(strInput);
            //int num2 = Convert.ToInt32(strInput);
            //String type = strInput;
            int result = 0;

            //if (type == "+")
            //{
            //    result = num1 + num2;
            //}
            //else if (type == "-")
            //{
            //    result = num1 - num2;
            //}
            //else if (type == "*")
            //{
            //    result = num1 * num2;
            //}
            //else if (type == "/")
            //{
            //    result = num1 / num2;
            //}
            Console.WriteLine($"The result is {result}");
        }

    }     
}
  • 写回答

1条回答 默认 最新

报告相同问题?

问题事件

  • 系统已结题 10月23日
  • 已采纳回答 10月15日
  • 创建了问题 10月14日

悬赏问题

  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集