package ch03;

public class Ch0117
{
 public static void main(String[] args)
 {
  /*
   * 카운터 변수의 선언 및 초기화
   * while(조건문)
   * {
   * 조건이 참일경우 수행되는 문장;
   * 증감문;
   * }
   * */
  int i=1;
  while(i<=10)
  {
   System.out.println("Hello");
   i++;
  }
 
 }

}

package ch03;

public class Ch0118_while
{
 public static void main(String[] args)
 {
  /*
   * do ~ while : 한번은 실행되는 반복문
   * 형식
   * 카운터변수의 초기화;
   * do
   * {
   *  실행문장;
   * }
   * while(조건식);
   * do while 구문도 조건이 참일 경우에만
   * 반복되지만 for문 while문과 다른점은
   * 조건식이 거짓일경우 적어도 한번은 실행된다.
   * */
  int i=1;
  do
  {
   System.out.println("Hello");
   i++;
  }
  while(i<=5);
 
  i=11;
  do
  {
   System.out.println("Kity");
   i++;
  }
  while(i<=5);
 }
}



Posted by 말없제이
,