//程式設計師 : 劉冠麟 (花花) (PC016)

//程式目的 : 1 累加到 10

//程式日期 : 2007/11/08

// Galculate the sum of the integeres from 1 to 10

public class Calculate

{

   public static void main ( String args[] )

   {
      int sum = 0 ;

      int x = 1 ;

      while ( x <= 10 ) // while x is less than or equal to 10  //回到這裡

      {

        sum += x ; //( sum += x  => sum = sum + x )

        ++x ; // increment x 如果沒有++x就是無限迴圈

      } //再回去while 如果還是符合條件 就繼續執行

      System.out.printf ( "The sum is : %d\n" , sum ); //有%d才需要用到printf

   }

}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 a25561970 的頭像
    a25561970

    萬花筒

    a25561970 發表在 痞客邦 留言(6) 人氣()