我正在写一个计算器,但出现错误
') ' 标记之前的错误预期主表达式
另一个错误
'/' 标记之前的错误预期主表达式
#include <iostream>
#include <math.h>
using namespace std;
int main ()
{
int a, b, y;
cout << "y ";
cin >> y;
cout << "a ";
cin >> a;
cout << "b ";
cin >> b;
if (y == +) {
int c = a + b;
} else if (y == -) {
int c = a - b;
} else if (y == *) {
int c = a * b;
} else if (y == /) {
int c = a / b;
} else {
cout << "ERROR" << endl;
}
cout << c
return 0;
}