用c#编写一个计算器类,该计算器能够接收两个算子,并有加、减、乘和除的功能。 5
1个回答
展开全部
class Program
{
static void Main(string[] args)
{
Calculator();
}
static void Calculator()
{
Console.WriteLine("请输入第一个数:");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("请输入运算符号:");
string str = Console.ReadLine();
Console.WriteLine("请输入第二个数:");
int c = 0;
int b = int.Parse(Console.ReadLine());
if (str == "+")
{
c = a+b;
}
if (str == "-")
{
c = a-b;
}
if (str == "*")
{
c = a*b;
}
if (str == "/")
{
c = a/b;
}
Console.WriteLine("运算结果为:{0}{1}{2}={3}",a,str,b,c);
}
}
{
static void Main(string[] args)
{
Calculator();
}
static void Calculator()
{
Console.WriteLine("请输入第一个数:");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("请输入运算符号:");
string str = Console.ReadLine();
Console.WriteLine("请输入第二个数:");
int c = 0;
int b = int.Parse(Console.ReadLine());
if (str == "+")
{
c = a+b;
}
if (str == "-")
{
c = a-b;
}
if (str == "*")
{
c = a*b;
}
if (str == "/")
{
c = a/b;
}
Console.WriteLine("运算结果为:{0}{1}{2}={3}",a,str,b,c);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询