標題:
物件導向基礎概念 (三)
[打印本頁]
作者:
tonyh
時間:
2013-8-17 17:28
標題:
物件導向基礎概念 (三)
import java.lang.Math; //引入類別庫 java.lang.* 中的 java.lang.Math 類別
public class ch73 //主類別
{
public static void main(String args[])
{
int x=2, y=5;
System.out.println(x+"的"+y+"次方為"+Math.pow(x,y)); //將變數代入Math類別中的pow()函式
}
}
複製代碼
作者:
t2364705
時間:
2013-8-17 17:29
import java.lang.Math;
public class ch73
{
public static void main(String args[])
{
int x=2, y=5;
System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
}
}
複製代碼
作者:
黃博鴻
時間:
2013-8-17 17:29
import java.lang.Math;
public class ch73
{
public static void main(String args[])
{
int x=2,y=5;
System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
}
}
複製代碼
作者:
劉漢文
時間:
2013-8-17 17:29
import java.lang.Math;
public class ch73
{
public static void main(String args[])
{
int x=2, y=5;
System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
}
}
複製代碼
作者:
t3742238
時間:
2013-8-17 17:30
import java.lang.Math;
public class ch73
{
public static void main(String args[])
{
int x=2,y=5;
System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
}
}
複製代碼
作者:
尤泓鈞
時間:
2013-8-21 20:50
import java.lang.Math;
public class ch73
{
public static void main(String args[])
{
int x=2, y=5;
System.out.println(x+"的"+y+"次方為"+Math.pow(x,y));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2