Run ID:148522
提交时间:2026-02-23 17:39:27
#include<bits/stdc++.h> using namespace std; int main(){ for(int i = 1;i < 100){ if(i % 2 != 0){ cout<<i; } } return 0; }