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 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作