標題:
[作業] 亂數 (三)
[打印本頁]
作者:
tonyh
時間:
2020-11-21 11:53
標題:
[作業] 亂數 (三)
本帖最後由 tonyh 於 2020-11-21 12:01 編輯
產生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
*/
複製代碼
作者:
林羿丞
時間:
2020-11-21 12:01
public class Ch666
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
王銘鴻
時間:
2020-11-28 09:45
public class Ch1
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
黃柏智
時間:
2020-11-28 09:56
public class A02
{
public static void main(String args[])
{
double r;
for(int i=1;i<=20;i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
黃柏智
時間:
2020-11-28 10:01
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
複製代碼
作者:
陳莉榛
時間:
2020-11-28 10:15
public class Ch666
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
張淯祺
時間:
2020-11-30 18:11
public class h2
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
李穎俊
時間:
2020-12-5 09:12
public class Ch32
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
龔品誠
時間:
2020-12-5 10:54
public class OWO
{
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