Java 숫자 2개를 입력받은 후 사이에 있는 짝수 출력

pitbull terrier·2021년 6월 24일
0

자바 알고리즘

목록 보기
14/27

문제

해결방안

package pack_ForDrill;

import java.text.DecimalFormat;
import java.util.Scanner;

public class ForEvenNumber {

	public static void main(String[] args) {
		
		Scanner scanner = new Scanner(System.in);
		
		System.out.print("첫 번째 숫자 입력 : ");
		int startNum = scanner.nextInt();
		System.out.print("첫 번째 숫자 입력 : ");
		int endNum = scanner.nextInt();
		scanner.close();
		
		System.out.println(startNum + "부터" + endNum + "사이의 짝수");
		
		for (int i = startNum; i <=endNum; i++) {
			if (i%2==0) {
				System.out.print(i);
				
				if (i < endNum -1) {
					System.out.print(", ");
				}
			}
		}
		
	}

}

결과

profile
yoonbitnara.github.io

0개의 댓글