两种题解
2024-07-11 16:39:34
发布于:浙江
7阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main( ){
int n = 1;
while(n < 101){
cout << n << endl;
n = n + 1;
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main( ){
for(int i = 1; i <= 100; i++){
cout << i << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个