개발/부트캠프

본캠프 : 개인 과제(키오스크 만들기)_Scanner 값 입력 복습

EJ EJ 2025. 1. 15. 16:55

Scanner에 아래 두 가지 방법으로 값 입력이 가능하다.

 

1번 

int selectMenu;
System.out.println("원하는 메뉴 번호를 입력하세요.");

selectMenu = sc.nextInt();

 

2번

int selectMenu;
System.out.println("원하는 메뉴 번호를 입력하세요.");

String input = sc.nextLine();
selectMenu = Integer.parseInt(input);