Run ID:96658
提交时间:2024-11-09 11:36:49
#include<bits/stdc++.h> using namespace std; int main(){ for(int b=0;b<=101;b++){ if(b%2==1){ cout<<b<<endl; } } return 0; }