题目简单,注意输出格式即可。
#include<stdio.h> int main() { int x=1; while (x<=100) { if (x%2==0) printf("%d\n",x); x=x+1; } return 0; }