[자바] 주소록 프로그램 소스 2단계

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;

   }

  }

 }
}

이 글을 공유하기

댓글

Designed by JB FACTORY