Recent Posts
Notice
No Rules Rules
별 찍기 - 4 (feat. 백준, 2441번) 본문
728x90
반응형
별 찍기 - 4
https://www.acmicpc.net/problem/2441
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
for(register int i = 0, j; i < N; ++i){
for(j = 0; j < i; ++j)
cout << " ";
for(j = N - i; j > 0; --j)
cout << "*";
cout << "\n";
}
return 0;
}
// *&)*@*
반응형
반복문을 사용하여 단순 별을 찍는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
경쟁적 전염 (feat. 백준, 18405번) (0) | 2022.10.20 |
---|---|
점프 (feat. 백준, 2253번) (0) | 2022.10.20 |
세 수 (feat. 백준, 10817번) (0) | 2022.10.20 |
학점계산 (feat. 백준, 2754번) (0) | 2022.10.20 |
A → B (feat. 백준, 16953번) (0) | 2022.10.20 |
Comments