Run ID:91948
提交时间:2024-09-26 10:57:25
#include <bits/stdc++.h> using namespace std; int main() { for(int z=1;z<=100;){ cout<<z<<endl; z=z+2; } return 0; }