본문 바로가기
JAVA/Coding Test Study

[D1] SWEA - 2027. 대각선 출력하기 : Java

by ♡˖GYURI˖♡ 2023. 11. 18.
728x90
import java.util.Scanner;
import java.io.FileInputStream;

class Solution
{
	public static void main(String args[]) throws Exception
	{
		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();
		}
	}
}

 

 

 


위의 방법이 더 쉽지만 다른 방법으로도 구현해보았다.

 

class D1_2027 {
    public static void main(String[] args) {
        String str = "+++++";
        char[] charArray = str.toCharArray();
        for (int i = 0; i < charArray.length; i++) {
            charArray[i] = '#';
            for(int j = 0; j < charArray.length; j++) {
                System.out.print(charArray[j]);
            }
            System.out.println();
            charArray[i] = '+';
        }
    }
}