给我一个基于c++的计算器得到代码
时间: 2023-06-18 07:08:36 浏览: 114
以下是一个基于C++的简单计算器代码:
```c++
#include <iostream>
using namespace std;
int main() {
char op;
float num1, num2;
cout << "Enter operator either + or - or * or /: ";
cin >> op;
cout << "Enter two operands: ";
cin >> num1 >> num2;
switch(op) {
case '+':
cout << num1+num2;
break;
case '-':
cout << num1-num2;
break;
case '*':
cout << num1*num2;
break;
case '/':
cout << num1/num2;
break;
default:
// If the operator is other than +, -, * or /, error message is shown
cout << "Error! operator is not correct";
break;
}
return 0;
}
```
这个计算器可以执行基本的算术运算,包括加、减、乘、除。用户输入运算符和两个操作数,程序通过switch语句判断运算符并执行相应的操作,最终输出结果。
阅读全文