반응형
https://www.acmicpc.net/problem/7595
구현문제였습니다.
📕 풀이방법
📔 입력 및 초기화
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';
}
}
}
'Algorithm > Implementation' 카테고리의 다른 글
(C++) - 백준(BOJ) 7789 : 텔레프라임 (0) | 2022.01.19 |
---|---|
(C++) - 백준(BOJ) 7598 : Bookings (0) | 2022.01.17 |
(C++) - 백준(BOJ) 24262 : 알고리즘 수업 - 알고리즘의 수행 시간 1 (0) | 2022.01.15 |
(C++) - 백준(BOJ) 8871 : Zadanie próbne 2 (0) | 2022.01.14 |
(C++) - 백준(BOJ) 24083 : 短針 (Hour Hand) (0) | 2022.01.13 |