#include <iostream>using namespace std;int main(){int n, i, j;cin >> n;for (i = 1; i <= n; i++){if (!(i % 2))cout << ' ';for (j = 1; j <= n; j++)cout << "* ";cout << '\n';}return 0;}
'백준' 카테고리의 다른 글
[12790] Mini Fantasy War (0) | 2018.09.10 |
---|---|
[8741] 이진수 합 (0) | 2018.09.03 |
[15156] 과제 (0) | 2018.08.27 |
[15000] CAPS (0) | 2018.08.26 |
[2386] 도비의 영어 공부 (0) | 2018.08.26 |