728x90
별 찍기 문제입니다.
사각형을 만드는 문제입니다.
ex)
N = 1
*
N = 2
**
**
N = 3
***
***
***
N = 4
****
****
****
****
#include <iostream>
#include <algorithm>
using namespace std;
int main(int argc, char* argv[])
{
int n;
cin >> n;
for (int i = 1; i <= n; ++i) {
for (int j = 1; j <= n; ++j) {
cout << "*";
}
cout << "\n";
}
return 0;
}
'알고리즘' 카테고리의 다른 글
[C++] 백준 10991번 별 찍기 - 16 (0) | 2019.10.01 |
---|---|
[C++] 백준 10990번 별 찍기 - 15 (0) | 2019.10.01 |
[C++] 백준 2523번 별 찍기 - 13 (2) | 2019.10.01 |
[C++] 백준 2522번 별 찍기 - 12 (2) | 2019.10.01 |
[C++] 백준 10451번 순열 사이클 (0) | 2019.09.30 |