while(16)
-
WhileEx01.java-후행/선행
while문 - 후행/선행 소스코드 public class WhileEx01 { public static void main(String[] args) { int i = 10; //초기식 //후행 while( i >= 0){ //조건식 System.out.println(i--); //증감식 } System.out.println("후행 후 i : " + i); System.out.println(); //선행 int j = 10; while( j >= 0){ //조건식 System.out.println(--j); //증감식 } System.out.println("선행 후 j : " + j); System.out.println(); } } 출력결과
-
WhileEx04 - while문 형식
while문 형식 while문 구문 형식 확인 반복문을 종료하기 위한 구문 주석 처리 후 결과 재확인 소스코드 public class WhileEx04 { public static void main(String[] args) { int num=0; while(num
-
while문
while문· while문은 for문과 유사하며 조건식을 만족할 경우에만 반복 처리하는 제어문입니다.· while문은 한번도 실행되지 않을 수 있습니다. while문 구성과 동작
-
ContinueEx02-3의 배수가 아니거나 7의 배수가 아니라면 출력하고 카운트 증가시키기
3의 배수가 아니거나 7의 배수가 아니라면 출력하고 카운트 증가시키기 소스코드 public class ContinueEx02 { public static void main(String[] args) { int num=0; int count=0; while((num++)