본문 바로가기
알고리즘/SWEA

2027. 대각선 출력하기.D1

by 모두의 향연 2022. 2. 5.
728x90
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.util.Arrays;
 
public class Solution {
 
    public static void main(String[] args) {
 
        for (int i = 0; i < 5; i++) {
            for (int j = 0; j < 5; j++) {
                if (i == j) {
                    System.out.print("#");
                } else {
                    System.out.print("+");
                }
            }
            System.out.println();
        }
    }
}
 
cs
728x90
반응형

'알고리즘 > SWEA' 카테고리의 다른 글

1938. 아주 간단한 계산기.D1  (0) 2022.02.05
2025. N줄덧셈.D1  (0) 2022.02.05
2029. 몫과 나머지 출력하기.D1  (0) 2022.02.05
2043. 서랍의 비밀번호. D1  (0) 2022.02.05
2046. 스탬프 찍기.D1  (0) 2022.02.05