반응형
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
for (int row = 1; row <= n; row++)
{
for (int i = 0; i < n - row; i++)
{
cout << ' ';
}
for (int i = 0; i < row; i++)
{
cout << '*';
}
cout << '\n';
}
return 0;
}
https://www.acmicpc.net/problem/2439
반응형
'Portpolio > algorithm' 카테고리의 다른 글
백준 10950 C++ 풀이 (0) | 2024.07.12 |
---|---|
algorithm category posting (0) | 2024.07.12 |
맞왜틀 : 1초에 1억번 연산 (0) | 2023.08.09 |
백준 10845 c언어 풀이 (0) | 2023.08.08 |
백준 10828 c언어 풀이 (0) | 2023.07.30 |
댓글