본문 바로가기
Algorithm

반복문 사용 개행 출력

by ZEROMI 2021. 10. 28.
728x90

백준알고리즘 10718


public class Main {
	public static void main(String[] args) {
		for (int i = 0; i < 2; i++) {
			System.out.println("강한친구 대한육군");
		}
	}
}

 

728x90