下面的代码在我输入一个整数后打印出“输入一个整数:”。我在 Eclipse 上用 C 编写代码,我知道这是一个新手问题,但有人能告诉我为什么会这样吗?
#include<stdio.h>
int main()
{
int n;
printf("Enter an integer: \n");
scanf("%d",&n);
if ( n%2 == 0 )
printf("Even\n");
else
printf("Odd\n");
return 0;
}