언어74 while문 예제_10보다 큰 정수를 입력하면 출력종료 import java.util.Scanner; public class Ex_while문 { public static void main(String[] args) { // while문을 사용하여 키보드로부터 입력 받은 수가 // 10보다 작을 때만 계속 정수를 입력 받으세요. Scanner sc = new Scanner(System.in); while(true) { System.out.print("정수 입력 : "); int num = sc.nextInt(); if(num > 10) { System.out.println("종료되었습니다."); break; } } } } 2023. 2. 26. 반복문 예제_로그인 방법 1) do while문 import java.util.Scanner; public class Ex13_do_while문 { public static void main(String[] args) { // 아이디와 비밀번호를 각각 입력받고 일치할 경우, "로그인 성공" // 일치하지 않을 경우 "아이디와 비밀번호가 잘못되었습니다."를 출력. Scanner sc = new Scanner(System.in); String id = "Hello"; String pw = "1234"; do { System.out.print("아이디를 입력해 주세요 >> "); String id1 = sc.next(); System.out.print("비밀번호를 입력해 주세요 >> "); String pw1 = sc.next(.. 2023. 2. 26. 이전 1 ··· 10 11 12 13 다음