반복문(do-while)
1. 조건에 상관없이 한번은 수행문을 수행
- while문은 조건을 먼저 체크하고 반복수행이 된다면, do-while은 조건과 상관없이 수행을 한번 하고 나서 조건을 체크
- 조건이 맞지 않으면 더 이상 수행하지 않음
- 예제(입력받은 모든 숫자의 합을 구하는 예제)
import java.util.Scanner;
public class DoWhileTest {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int input;
int sum = 0;
do {
input = scanner.nextInt();
sum += input;
} while(input != 0);
System.out.println(sum);
}
}
Author And Source
이 문제에 관하여(반복문(do-while)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dev_shu/반복문do-while저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)