输出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;
}
如果您有更优的解法,欢迎在评论区一起交流噢~
阅读剩余
THE END