展开全部
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();
}
}
}
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();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果是初学,建议你自己动脑子想想怎么构造自己的程序。网上提供的代码没有 复用性等缺憾。如果是为了应付答辩或者考试,百度搜下C#计算器,有很多源代码。
不过,个人认为,如果你想从事这个行业,前期多写多做肯定是对自己有利的,经历的错误多了,以后再写类似的东西,自己就不会出相同的错误了,是一种提高。
个人意见,仅供参考!
不过,个人认为,如果你想从事这个行业,前期多写多做肯定是对自己有利的,经历的错误多了,以后再写类似的东西,自己就不会出相同的错误了,是一种提高。
个人意见,仅供参考!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是控制台的还是窗体应用程序啊?
说清楚写才好设计啊
说清楚写才好设计啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询