2027. 대각선 출력하기

호찌 Hozzi ·2022년 5월 13일
0

알고리즘

목록 보기
7/18
#include<iostream>

using namespace std;

int main(int argc, char** argv)
{
	cout << "#++++" << endl;
    cout << "+#+++" << endl;
    cout << "++#++" << endl;
    cout << "+++#+" << endl;
    cout << "++++#" << endl;
	return 0;//정상종료시 반드시 0을 리턴해야합니다.
}
profile
코린이

0개의 댓글