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

1번째 줄: 1번째 줄:
==개요==
==개요==
;SWEA 2027 대각선 출력하기
;SWEA 2027 대각선 출력하기
* https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QFuZ6As0DFAUq
* for문을 사용해도 되지만 간단히 수작업으로 문자열들을 기입하여 출력했다.


{{SWEA 헤더}}
{{SWEA 헤더}}

2019년 1월 21일 (월) 01:21 판

1 개요

SWEA 2027 대각선 출력하기
  • for문을 사용해도 되지만 간단히 수작업으로 문자열들을 기입하여 출력했다.
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 1-2

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("++++#");
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}