输入X,用循环处理,对2求余不为零即为奇数
#include<iostream> using namespace std; int main() { int X; cin>>X; for(int i=1;i<=X;i++) if(i%2!=0)cout<<i<<endl; return 0; }