Short Cake
8PM - Animal Crossing Wild World

사생활 보호 설정

https://gamjia.tistory.com

Mini Rooms

  • 내 미니룸
  • 미니미설정
  • 미니룸설정
  • 답글수 [0]

What Friends Say

한마디로 표현해봐~

1촌평 관리

2439번 별 찍기 -2

2023. 3. 22. 09:10BaekJoon

단계별로 풀어보기 - 반복문 - 10단계

https://www.acmicpc.net/problem/2439

#include <iostream>
using namespace std;
int main()
{
    int N;
    cin>>N;
    
    for(int i=1;i<=N;i++)
    {
        for(int j=0;j<N-i;j++)
        {
            cout<<" ";
        }
        
        for(int k=1;k<=i;k++)
        {
            cout<<"*";
        }           
        cout<<endl;
    }
    return 0;
}
​

'BaekJoon' 카테고리의 다른 글

10951번 A+B -4  (0) 2023.03.22
10952번 A+B -5  (0) 2023.03.22
2438번 별 찍기 -1  (0) 2023.03.22
11022번 A+B -8  (0) 2023.03.22
11021번 A+B -7  (1) 2023.03.22