输出1到100之间的偶数,用C语言怎么写啊?

问题描述:

输出1到100之间的偶数,用C语言怎么写啊?

#include
int main()
{
int i;
for(i = 1; i {
if(i % 2 == 0)
printf("%d\n",i);
}
return 0;
}