"프로그래머스 120823 직각삼각형 출력하기"의 두 판 사이의 차이

(새 문서: ==개요== {{프로그래머스|레벨=0}} * 프로그래머스 입문 캘린더 분류: 프로그래머스 입문 캘린더 분류: 프로그래머스 코딩테스트 입...)
 
7번째 줄: 7번째 줄:
==C++==
==C++==
<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>
using namespace std;
int main(void) {
    int n;
    cin >> n;
    for(int i=1; i<=n; i++) {
        for(int j=1; j<=i; j++) {
            cout << '*';
        }
        cout << '\n';
    }
    return 0;
}
</syntaxhighlight>
</syntaxhighlight>

2023년 11월 9일 (목) 01:10 판

1 개요

프로그래머스 120823 직각삼각형 출력하기

2 C++

#include <iostream>

using namespace std;

int main(void) {
    int n;
    cin >> n;
    for(int i=1; i<=n; i++) {
        for(int j=1; j<=i; j++) {
            cout << '*';
        }
        cout << '\n';
    }
    return 0;
}