분류 전체보기399 do_while문 예제_숫자 계속 입력받기 import java.util.Scanner; public class Ex_do_while문 { public static void main(String[] args) { /* 숫자를 입력받아 숫자 계속 입력받기 */ Scanner sc = new Scanner(System.in); do { System.out.print("정수입력 : "); int num = sc.nextInt(); if(num==0) { System.out.println("프로그램 종료"); break; } } while(true); } } 2023. 2. 26. while문 예제_숫자 입력 시, 홀수와 짝수의 누적 개수 import java.util.Scanner; public class Ex_while문 { public static void main(String[] args) { /* while문을 사용하여 숫자를 입력받아 * 홀수와 짝수가 각각 몇 개 입력되었는지 출력 */ Scanner sc = new Scanner(System.in); int result1 = 0; int result2 = 0; while(true) { System.out.print("숫자입력 : "); int num = sc.nextInt(); if(num==-1) { System.out.println("종료되었습니다."); break; } if(num%2==0) { result1 += 1; // result1++ } else { result2.. 2023. 2. 26. while문 예제_숫자 누적 import java.util.Scanner; public class Ex_그냥복습 { public static void main(String[] args) { /* while문을 사용하여 키보드로부터 * 숫자를 입력받아 누적하는 프로그램 작성. */ Scanner sc = new Scanner(System.in); int sum = 0; while(true) { System.out.print("숫자입력 : "); int num = sc.nextInt(); sum += num; System.out.println("누적결과 : "+sum); if(num==-1) { System.out.println("종료되었습니다."); break; } } } } 2023. 2. 26. 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. [Java Festival] 지폐의 개수 출력 첫 번째 시도) 틀린 코드ㅠㅜ import java.util.Scanner; public class P_04 { public static void main(String[] args) { /* 거스름돈을 입력 받아 내어줘야 하는 지폐의 개수를 출력. * 단, 최대단위는 10,000원, 최소단위는 100원 */ Scanner sc = new Scanner(System.in); System.out.print("총 금액 입력 : "); int bill = sc.nextInt(); System.out.println(); System.out.println("잔돈 : "+bill); int result1 = (bill/10000); System.out.println("10,000원 : "+result1+"개"); i.. 2023. 2. 26. 이전 1 ··· 63 64 65 66 67 다음