首页上一页 1 下一页尾页 2 条记录 1/1页
#include<iostream>
using namespace std;
void main()
{
cout << "主人,我是一个简易计算器,我可以帮你计算问题,但是不要太复杂" << endl;
cout << "请输入问题" << endl;
getchar();
double x, y;
char ch;
cin >> x >> ch >> y;
int i_x = x;
int i_y = y;
switch (ch)
{
case '+':
cout << x + y << endl;
system("pause");
break;
case '-':
cout << x - y << endl;
system("pause");
break;
case '*':
cout << x * y << endl;
system("pause");
break;
case '/':
cout << x / y << endl;
system("pause");;
break;
case '%':
cout << i_x % i_y << endl;
system("pause");;
break;
default:
cout << "我不会了" << endl;
system("pause");
break;
}
}
于2017-01-13 11:25:06编辑