"SWEA 2027 대각선 출력하기"의 두 판 사이의 차이

 
1번째 줄: 1번째 줄:
==개요==
==개요==
;SWEA 2027 대각선 출력하기
{{SWEA|난이도=1}}
* 난이도: [[SWEA D1]]
* for문을 사용해도 되지만 간단히 수작업으로 문자열들을 기입하여 출력했다.
* for문을 사용해도 되지만 간단히 수작업으로 문자열들을 기입하여 출력했다.



2023년 8월 25일 (금) 01:42 기준 최신판

1 개요[ | ]

SWEA 2027 대각선 출력하기

2 C++[ | ]

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

3 Java[ | ]

class Solution {
    public static void main(String args[]) {
        System.out.println("#++++");
        System.out.println("+#+++");
        System.out.println("++#++");
        System.out.println("+++#+");
        System.out.println("++++#");
    }
}

4 Python[ | ]

#kcy
print("#++++")
print("+#+++")
print("++#++")
print("+++#+")
print("++++#")
print(
'''#++++
+#+++
++#++
+++#+
++++#'''
)
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}