Java 임의의 숫자 누적 출력

pitbull terrier·2021년 6월 24일
0

자바 알고리즘

목록 보기
15/27

문제

해결방안

package pack_Condition;

import java.util.Scanner;

public class Break {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		
		int count =0;
		for (int i = 0; i < 100; i+=scanner.nextInt()) {
			count++;
			
			System.out.printf("%d. 숫자입력(누적%d) : ", count,i);
		
			if (i == 999) {
				break;
			}
		}
		System.out.println("프로그램 종료!");
		
		

		scanner.close();

	}

}

결과

profile
yoonbitnara.github.io

0개의 댓글