-3
在這個簡單的程序中查找數字是偶數還是奇怪的是它保持錯誤Main.c:3:9:error:expected'=',',';','asm'或''屬性'{'標記之前。請幫忙。Main.c:3:9:error:expected'=',',',';','asm'或'__attribute__'before'{'token
#include<stdio.h>
int main{
int n;
scanf("%d",&n);
if(n%2==0)
printf("%d is an even number",n);
else
printf("%d is an odd number",n);
return 0;
}
你忘了'main()'後面的'()' – litelite
哦。謝謝!完全忘了 –
@litelite:最好是'(void)';一個空的參數列表是一個過時的功能;不要再使用它了! – Olaf