do-while문1 JAVA(자바) - 반복문(do-while문) ▶do-while문 - 조건에 따라 반복을 계속할지를 결정할때 사용하는 것은 while문과 동일 - 무조건 중괄호 { } 블록을 한 번 실행하고, 조건을 검사하여 반복 결정 public static void main(String[] args) { System.out.println("메세지를 입력하세요"); System.out.println("프로그램을 종료하려면 q를 입력하세요"); Scanner scanner = new Scanner(System.in); String inputString; int i = 0; do { System.out.print(">"); inputString = scanner.nextLine(); System.out.println(inputString); } while (!inpu.. 2021. 2. 12. 이전 1 다음