728x90 자바 do while문1 [JAVA] ch04-21. do ~ while 문 public class Ex21 { public static void main(String[] args){ Scanner sc = new Scanner(System.in); char answer = 0; do{ System.out.print("continue? "); answer = sc.nextLine().charAt(0); }while(answer == 'y'); System.out.println("\nQuit."); } } JAVA/예제 2017. 8. 22. 이전 1 다음 728x90