while문

· IT/JAVA
while문 특정 조건을 만족할 때 까지 무한정 돌아간다. 무한 루프를 만들기 쉽다. while(i= 90) { System.out.println("수"); } else if(score >= 80) { System.out.println("우"); } else if(score >= 70) { System.out.println("미"); } else if(score >= 60) { System.out.println("양"); } else { System.out.println("가"); } } } switch문 일 경우 public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = 0; while(true) { Syst..
· IT/JAVA
반복문 for문 vs while문 for문 반복문 중 정확한 횟수가 정해져 있을 때 for문을 사용한다. i 가 0 부터 30 까지 i를 1씩 증가시키며 반복한다. public static void main(String[] args) { // 증가 반복 for(int i = 0; i 0; i--) { System.out.println(i); } // 3씩 감소 반복 for(int i = 30; i > 0; i-=3) { System.out.println(i); } }연습문제(Ex14.java) - 1~9까지의 합을 구하세요 - 1~N까지의 곱을 구하세요(N!)//1~9까지의 합을 구하세..
밍띠이
'while문' 태그의 글 목록