0
点赞
收藏
分享

微信扫一扫

4735: C语言循环水题2

yongxinz 2022-01-31 阅读 44
c语言

#include<iostream>
using namespace std;
int main()
{
    int n;
    cin>>n;
    while(n--)
        cout<<n+1<<endl;
    return 0;
}

举报

相关推荐

0 条评论