Run ID:153580

提交时间:2026-05-23 10:21:36

#include<bits/stdc++.h> using namespace std; int main() { for(int x=1;x<=100;++x) { if(x%2!=0) cout<<x<<" "; } return 0; }