728x90
카운트다운(자바, for, while)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | package com.doubles.javabasic.loops; public class JavaLoopForWhile { public static void main(String[] args){ // while문 연습 : 카운트다운 int i = 11; System.out.println("카운트 다운을 시작합니다."); // i가 0이 아닐 때까지 1씩 감소시킨다. while(i-- != 0){ System.out.println(i); // 콘솔창에 숫자 카운트가 눈에 식별될 수 있을 정도로 반복문을 수행시킨다. // for문 j는 0부터 2,000,000까지 1씩 증가시키면서 반복 for(int j=0; j<2_000_000_000; j++){ // for문 k는 0부터 2,000,000까지 1씩 증가시키면서 반복 for(int k=0; k<2_000_000_000; k++); } } // while문 반복이 끝나면 아래의 문구 출력 System.out.println("GAME OVER"); } } | cs |