標題:
亂數 (二)
[打印本頁]
作者:
許婷芳
時間:
2019-9-27 16:53
標題:
亂數 (二)
運用 random() 函式搭配for迴圈,
產生20組範圍介於0.00000~0.99999之隨機亂數.
public class Ch31
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
陳柏銓
時間:
2019-9-28 14:01
public class C05 {
public static void main(String[] args) {
double t;
for(int i=0;i<20;i++)
{t=Math.random();
System.out.println(t);
}
}
}
複製代碼
作者:
吳孟修
時間:
2019-9-28 14:01
public class a
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
吳孟書
時間:
2019-9-28 14:02
public class a
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
田宇任
時間:
2019-9-28 14:03
public class king
{
public static void main(String args[])
{
for(int x=1;x<=20;x++)
System.out.println(Math.random());
}
}
複製代碼
作者:
洪寬瀧
時間:
2019-9-28 14:03
public class Ch31
{
public static void main(String args[])
{
for(int i=1;i<=20;i++)
{
system.out.println(Math.random());
}
}
}
複製代碼
作者:
湯郡一
時間:
2019-9-28 14:04
public class Ch02
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2