抱歉,如果之前有人问过这个问题或者这是一个愚蠢的问题,但我对网站和 C 都是新手。所以,当我运行这段代码时,当我输入答案时,任何答案,无论是对还是错,它都会说if 语句何时应该说什么。
这是代码:
#include <stdio.h>
int main()
{
int x;
printf("1+1=");
scanf("%d", &x);
if("x==2"){
printf("Watch out, we got a genius over here!");
}
else {
printf("I don't even know what to say to this...");
}
return 0;
}