输出100~1所有整数
Description
使用for循环,输出100~1的所有整数。
Input
无须输入
Output
输出100~1每一个整数,每个数之前用空间隔离开
python解法
for i in range(100,0,-1):
print(i)
c++解法
#include<bits/stdc++.h>
using namespace std;
int main() {
for(int i = 100; i >= 1; --i) {
cout << i << endl;
}
return 0;
}
如果您有更优的解法,欢迎在评论区一起交流噢~
阅读剩余
作者:小鱼
链接:https://www.52stu.com/?p=151
文章版权归作者所有,未经允许请勿转载。
链接:https://www.52stu.com/?p=151
文章版权归作者所有,未经允许请勿转载。
THE END