반응형
2438번 별찍기-1 : https://www.acmicpc.net/problem/2438
2439번 별찍기-2 : https://www.acmicpc.net/problem/2439
2440번 별찍기-3 : https://www.acmicpc.net/problem/2440
2441번 별찍기-4 : https://www.acmicpc.net/problem/2441
for문을 이용한 간단한 기초 문제
별찍기 -1
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include<iostream> using namespace std; int main(){ int N; scanf("%d",&N); for(int i=1;i<=N;i++){ for(int j=0;j<i;j++){ cout<<"*"; } cout<<endl; } } | cs |
별찍기 -2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #include<iostream> using namespace std; int main(){ int N; scanf("%d",&N); for(int i=1; i<=N;i++){ for(int j=0;j<N-i;j++){ cout<<" "; } for(int k=0;k<i;k++){ cout<<"*"; } cout<<endl; } } |
별
별찍기 -3
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include<iostream> using namespace std; int main(){ int N; scanf("%d",&N); for(int i=0;i<N;i++){ for(int j=0;j<N-i;j++){ cout<<"*"; } cout<<endl; } } | cs |
별찍기 -4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include<iostream> using namespace std; int main(){ int N; scanf("%d",&N); for(int i=0;i<N;i++){ for(int j=0;j<i;j++){ cout<<" "; } for(int k=0;k<N-i;k++){ cout<<"*"; } cout<<endl; } } | cs |
반응형
'군대에서 한것 > 백준 알고리즘' 카테고리의 다른 글
<백준>2293번 동전 1 (0) | 2018.08.19 |
---|---|
<백준>11720번 숫자의 합 (0) | 2018.08.19 |
<백준> 1463번 1로 만들기 (0) | 2018.08.19 |
<백준> 2156번 포도주 시식 (0) | 2018.08.19 |
[군대]<백준>2292번 벌집 (0) | 2018.08.11 |