码迷,mamicode.com
首页 > 其他好文 > 详细

【练习】n阶数字三角形

时间:2018-02-08 13:33:16      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:ret   str   pos   body   color   练习   main   log   else   

#include <iostream>
using std::cin;
using std::cout;
using std::endl;
int main() {
    int n;
    cin >> n;
    
    for (int a=1; a<=n; a++){
        int k;

    if (a==1){
            k = n;
    }
        
        for (int b=1; b <= k; b++){
            cout << a;
            
            if (b < k){
                cout << " ";
            }
            else{
                cout << endl;
            }
        }
        
        k--;
    }
    
    return 0;
}

 

【练习】n阶数字三角形

标签:ret   str   pos   body   color   练习   main   log   else   

原文地址:https://www.cnblogs.com/syxy/p/8430957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!