標題:
亂數 (一)
[打印本頁]
作者:
tonyh
時間:
2016-4-29 21:22
標題:
亂數 (一)
本帖最後由 tonyh 於 2016-5-6 19:46 編輯
運用 random() 函式, 產生一範圍介於 0.00000 (趨近於0) ~ 0.99999 (趨近於1) 之隨機亂數.
用此語法產生的亂數, 其資料形態為 double.
public class Ch30
{
public static void main(String args[])
{
double r;
r=Math.random();
System.out.println(r);
}
}
複製代碼
作者:
李知易
時間:
2016-4-29 21:39
public class Ch33
{
public static void main(String args[])
{
System.out.println(Math.random());
}
}
複製代碼
作者:
洪振庭
時間:
2016-4-29 22:12
public class Ch33
{
public static void main(String args[])
{
System.out.println(Math.random());
}
}
複製代碼
作者:
沈子耕
時間:
2016-5-1 12:47
public class Ch30{
public static void main(String args[]){
System.out.println(Math.random());
}
}
複製代碼
作者:
梁和雋
時間:
2016-5-6 15:38
public class Ch33{
public static void main(String args[])
System.out.print(Math.random());
}
複製代碼
作者:
黃璽安
時間:
2016-5-6 18:49
public class Ch33
{
public static void main(String args[])
{
System.out.println(Math.random());
}
}
複製代碼
作者:
曾挺桂
時間:
2016-5-6 19:49
public class Ch30
{
public static void main(String args[])
{
double x=Math.random();
System.out.println(x);
}
}
複製代碼
作者:
陳思惟
時間:
2016-5-6 19:51
public class Ch34
{
public static void main(String args[])
{
double x;
x=Math.random();
System.out.println(x);
}
}
複製代碼
作者:
黃柏維
時間:
2016-5-6 19:53
public class Ch30
{
public static void main(String args[])
{
System.out.println(Math.random());
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2