공부하시는대에 도움이 됐으면 좋겠습니다.
답안코드 확인해주세요!
더보기
import java.util.Scanner;
public class Main {
public static void call() {
System.out.println("@@@@@@@@@@");
}
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int input1 = in.nextInt();
System.out.println("first");
call();
System.out.println("second");
call();
System.out.println("third");
call();
}
}
댓글