用C#编写一个简易计算器

要求见图。
2025-01-05 11:00:10
推荐回答(3个)
回答1:

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

namespace ConsoleApplication3
{
class Program
{
private static double c;
private static double Plus(int a, int b)
{
c = a + b;
return c;
}
private static double Reduction(int a, int b)
{
c = a - b;
return c;
}
private static double Multiplication(int a, int b)
{
c = a * b;
return c;
}
private static double Division(int a, int b)
{
c = a / b;
return c;
}

static void Main(string[] args)
{
double Result;
Console.WriteLine("请输入两个操作数及运算符");
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
char Operator = Convert.ToChar(Console.ReadLine());
if (Operator == '+')
{
Result = Plus(a, b);
Console.WriteLine(Result);
}
else if (Operator == '-')
{
Result = Reduction(a, b);
Console.WriteLine(Result);
}
else if (Operator == '*')
{
Result = Multiplication(a,b);
Console.WriteLine(Result);
}
else if (Operator == '/')
{
Result = Division(a, b);
Console.WriteLine(Result);
}
Console.ReadKey();
}
}
}

回答2:

如果是初学,建议你自己动脑子想想怎么构造自己的程序。网上提供的代码没有 复用性等缺憾。如果是为了应付答辩或者考试,百度搜下C#计算器,有很多源代码。
不过,个人认为,如果你想从事这个行业,前期多写多做肯定是对自己有利的,经历的错误多了,以后再写类似的东西,自己就不会出相同的错误了,是一种提高。
个人意见,仅供参考!

回答3:

是控制台的还是窗体应用程序啊?
说清楚写才好设计啊