Run ID:141987

提交时间:2025-12-29 16:52:20

#include<iostream> using namespace std; int main(){ for(int x=1;x<=100;x++){ if(x%2==1){ cout<<x<<" "; } } }