C++学习(六):打印三角形

#include<stdio.h>
#include<iostream>
using namespace std;
int main()
{
    int line;
    cin >> line;
    string s;
    for (int i = 1; i <= line; ++i){
        s += "*";
        cout << s.c_str() << endl;
    }
    system("pause");
    return 0;
}

 

posted @ 2019-10-30 17:12  liw66  阅读(257)  评论(0)    收藏  举报