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