042. 반복문을 이용하여 피라미드 출력하기

jychan99·2021년 10월 13일
0
 #include <iostream>

using namespace std;



int main()

{

    int offset = 4;



    for (int i = 1, j = 0; i <= offset; i++, j = 0)

    {

        for (int k = 1; k <= offset - i; k++)

            cout << "  ";



        while (j != 2 * i - 1)

        {

            cout << "* ";

            j++;

        }

        

        cout << endl;

    }



    return 0;

}
profile
내가 지금 두려워 하고 있는 일이 바로 내가 지금 해야 할 일이다. 🐍

0개의 댓글

관련 채용 정보