while과 do while의 비교(1)

 

 

 

 

 

using System;

class WhileCompare {

  public static void Main(string[] args) {

  int start;

  start=0;

  Console.WriteLine("while문 실행 결과");

  while(++start < 10) {

  Console.WriteLine("{0,3}", start);

  }

 

  Console.WriteLine("-------------------");

  start = 0;

  Console.WriteLine("do-while문 실행 결과");

  do {

  Console.WriteLine("{0,3}", start);

  } while(++start < 10);

  Console.ReadLine();

  }

}

 

 

 

 

+ Recent posts