標題:
亂數 (三)
[打印本頁]
作者:
許婷芳
時間:
2019-9-27 16:54
標題:
亂數 (三)
本帖最後由 許婷芳 於 2019-9-28 14:00 編輯
產生20組範圍介於1~3之隨機亂數(整數).
public class Ch32
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
/*
Math.random() 0.0000 ~ 0.999999
Math.random()*3 0.0000 ~ 2.999999
Math.random()*3+1 1.0000 ~ 3.999999
(int)(Math.random()*3+1) 1 ~ 3
*/
複製代碼
作者:
吳孟修
時間:
2019-9-28 14:02
public class a
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
陳柏銓
時間:
2019-9-28 14:03
public class C05 {
public static void main(String[] args) {
double t;
for(int i=0;i<20;i++)
{
System.out.println((int)Math.random());
}
}
}
複製代碼
作者:
吳孟書
時間:
2019-9-28 14:04
public class a
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
田宇任
時間:
2019-9-28 14:04
public class king
{
public static void main(String args[])
{
for(int x=1;x<=20;x++)
System.out.println((int)Math.random()*3+1);
}
}
複製代碼
作者:
洪寬瀧
時間:
2019-9-28 14:05
public class Ch31
{
public static void main(String args[])
{
for(int i=1;i<=20;i++)
{
system.out.println((int)Math.random()*3+1);
}
}
}
複製代碼
作者:
湯郡一
時間:
2019-9-28 14:06
public class Ch03
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2