Board logo

標題: 物件導向基礎概念 (三) [打印本頁]

作者: tonyh    時間: 2013-8-17 17:28     標題: 物件導向基礎概念 (三)

  1. import java.lang.Math;   //引入類別庫 java.lang.* 中的 java.lang.Math 類別
  2. public class ch73    //主類別
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x=2, y=5;
  7.         System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));  //將變數代入Math類別中的pow()函式
  8.     }
  9. }
複製代碼

作者: t2364705    時間: 2013-8-17 17:29

  1. import java.lang.Math;
  2. public class ch73
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x=2, y=5;
  7.         System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
  8.     }
  9. }
複製代碼

作者: 黃博鴻    時間: 2013-8-17 17:29

  1. import java.lang.Math;
  2. public class ch73
  3. {
  4.      public static void main(String args[])
  5.      {
  6.           int x=2,y=5;
  7.           System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
  8.      }
  9. }
複製代碼

作者: 劉漢文    時間: 2013-8-17 17:29

  1. import java.lang.Math;
  2. public class ch73
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x=2, y=5;
  7.         System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
  8.     }
  9. }
複製代碼

作者: t3742238    時間: 2013-8-17 17:30

  1. import java.lang.Math;
  2. public class ch73
  3. {
  4.   public static void main(String args[])
  5.   {
  6.     int x=2,y=5;
  7.     System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
  8.   }
  9. }
複製代碼

作者: 尤泓鈞    時間: 2013-8-21 20:50

  1. import java.lang.Math;
  2. public class ch73
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x=2, y=5;
  7.         System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
  8.     }
  9. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2