분류 전체보기 236

ch05 DoWhileTest1

package ch05; public class DoWhileTest1 { public static void main(String[] args) { int input = 10; int sum = 0; final int LIMIT = 10; do { System.out.println("현재 값 : " + input); input = input - 1; //input--; }while(input != LIMIT); //do는 무조건 실행하고난뒤에 while문을 실행하고난뒤 조건에 충족하면 //다시 do로 가고 조건에 충족하지못하면 while값으로 //if문과 다르게 반복적으로 사용가능 Ex)학점 }//main }

Java/chapter1 2021.08.20

while문

조건이 참(true)인 동안 반복수행하기 ​ ● 주어진 조건에 맞는 동안(true) 지정된 수행문을 반복적으로 수행하는 제어문 ● 조건이 맞지 않으면 반복하던 수행을 멈추게 됨 ● 조건은 주로 반복 횟수나 값의 비교의 결과에 따라 true, false 판단 됨 ​ ​ while문 ​ 수행문을 수행하기 전 조건을 체크하고 그 조건의 결과가 true인 동안 반복 수행 ​ while 문 예제 ​ 1부터 10까지 더하여 그 결과를 출력해 보자 public class WhileTest { public static void main(String[] args) { int num = 1; int sum = 0; while (num

Java/정리 2021.08.20