공부하는 히욤이

2027. 대각선 출력하기 본문

Algorithm/SW Expert Academy

2027. 대각선 출력하기

히욤이 2019. 1. 10. 00:22

SW Expert 2027. 대각선 출력하기

문제의 저작권은 SW Expert에 있습니다 



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
public class Solution {
 
    public static void main(String[] args) {
        
        System.out.println("#++++");
        System.out.println("+#+++");
        System.out.println("++#++");
        System.out.println("+++#+");
        System.out.println("++++#");
        
    }
 
}
 
cs


'Algorithm > SW Expert Academy' 카테고리의 다른 글

1933. 간단한 N 의 약수  (0) 2019.01.10
2050. 알파벳을 숫자로 변환  (0) 2019.01.10
1938. 아주 간단한 계산기  (0) 2019.01.10
2058.자릿수 더하기  (0) 2019.01.10
2047. 신문 헤드라인  (0) 2019.01.10