我真的不知道这是什么错误。这似乎是对的,不是吗?
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
char op;
printf("Type in operator (+,-,/,*):");
scanf("%i",&op);
if(op == '+')
{
printf("You entered a plus");
}
system("pause");
return 0;
}
我希望它在输入 + 时打印“你输入了一个加号”。它不是。
我对 C 有点陌生。在此先感谢 :)