编程输出1000以内的所有偶数?C语言编程题求代码
int main() { for(int i=2;i<=1000;i++) if(i%2==0) printf("%d ",i); return 0; }