Run ID:142018

提交时间:2025-12-29 17:02:05

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