자바 메소드를 사용하여 정수 출력

pitbull terrier·2021년 6월 28일
0

자바 알고리즘

목록 보기
21/27

문제

해결방안

import java.util.Scanner;

public class MtdDrill {

	public static void main(String[] args) {
		
		Scanner scanner = new Scanner(System.in);
		
		System.out.print("정수를 입력하세요 : ");
		int num = scanner.nextInt();
		
		String txt = input(num); 

		scanner.close();		
		System.out.println("입력하신 정수는 " + txt + "입니다.");
		System.out.println(txt.getClass().getName());

	}
	public static String input(int num) {
		
		String txt = "" + num;
		 return txt;
	}

}

결과

profile
yoonbitnara.github.io

0개의 댓글