본문 바로가기

Algorithm/Implementation

(C++) - 백준(BOJ) 7595 : Triangles

반응형

https://www.acmicpc.net/problem/7595

 

7595번: Triangles

Each line of input contains a single positive integer, n, 1 <= n <= 100. The last line of input contains 0. For each non-zero number, draw a triangle of that size. 

www.acmicpc.net

구현문제였습니다.

📕 풀이방법

📔 입력 및 초기화

while loop를 수해하며 출력할 줄 수 n을 입력해줍니다.

📔 정답출력

형식에 맞게 출력합니다.


📕 Code

#include <bits/stdc++.h>
using namespace std;
int main(){
    while(1){
        int n;
        cin >> n;
        if(!n) break;
        for(int i = 0; i < n; i++){
            for(int j = 0; j <= i; j++){
                cout << "*";
            }
            cout << '\n';
        }
    }
}