Bomb Kirby Running
Cat Life - GT-K
2027번 대각선 출력하기

2023. 3. 17. 09:02SWEA

Problem Solving - Level 1 - 대각선 출력하기

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QFuZ6As0DFAUq&categoryId=AV5QFuZ6As0DFAUq&categoryType=CODE

#include <iostream>
using namespace std;
int main()
{
    cout<<"#++++"<<endl;
    cout<<"+#+++"<<endl;
    cout<<"++#++"<<endl;
    cout<<"+++#+"<<endl;
    cout<<"++++#"<<endl;
     
    return 0;
}

'SWEA' 카테고리의 다른 글

2043번 서랍의 비밀번호  (0) 2023.03.17
2029번 몫과 나머지 출력하기  (0) 2023.03.17
2025번 N줄 덧셈  (0) 2023.03.17
1938번 아주 간단한 계산기  (0) 2023.03.17
1933번 간단한 N의 약수  (0) 2023.03.16