[자바] 주소록 프로그램 소스 2단계
- 카테고리 없음
- 2015. 7. 22. 23:30
package IdontStudyJava;
import java.util.Scanner;
public class PhoneBookVer2 {
static Scanner sc = new Scanner(System.in);
public static void showMenu() {
System.out.println("1.데이터 입력");
System.out.println("2.프로그램 종료");
}
public static void readData() {
System.out.print("이름을 입력하세요 :");
String name = sc.nextLine();
System.out.print("번호를 입력하세요 :");
String number = sc.nextLine();
System.out.print("생년원일을 입력하세요 :");
String birth = sc.nextLine();
PhoneInfo info = new PhoneInfo(name, number, birth);
info.printInfo();
}
public static void main(String[] args) {
// TODO Auto-generated method stub
int choice;
while (true) {
showMenu();
choice = sc.nextInt();
sc.nextLine();
switch (choice) {
case 1:
readData();
break;
case 2:
return;
}
}
}
}
이 글을 공유하기