int main() { int i; for(i=1;i<=100;i++) (循环进行的必要条件) { if(i%2==0) (判断是否是偶数) printf(“%d\n”,i); } return 0; }