#30071: C++ㄉ答案


s010472@student.cysh.cy.edu.tw (yeee)

學校 : 國立嘉義高級中學
編號 : 182496
來源 : [163.27.3.90]
最後登入時間 :
2023-09-25 09:05:57
c419. Bert的三角形 (2) | From: [163.27.3.92] | 發表日期 : 2022-04-26 12:56

#include <iostream>
using namespace std;

int main()
{
    int  n;
    while(cin >> n)
    {
        for(int i=1;i<=n;i++)
        {

            for(int j=1;j<=n-i;j++)
            {
            cout << "_";
            } for(int j=1;j<=i;j++)
            {
            cout << "*";
            }

            cout << endl;
        }
    cout << endl;
    }
    return 0;
}
 
ZeroJudge Forum