標題:
亂數 (三)
[打印本頁]
作者:
tonyh
時間:
2018-11-5 20:06
標題:
亂數 (三)
產生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
*/
複製代碼
作者:
李沛昂
時間:
2018-11-5 20:45
public class Pig
{
public static void main(String pigs[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
黃宇綸
時間:
2018-11-5 20:45
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
曾堂桂
時間:
2018-11-5 20:45
public class Ch32
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
黃宇瑄
時間:
2018-11-5 20:47
public class Ch32
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
洪翊庭
時間:
2018-11-5 20:48
public class Ch32
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
洪翊展
時間:
2018-11-5 20:49
public class Ch32
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
李沛昂
時間:
2018-11-19 19:27
public class Pig
{
public static void main(String pigs[])
{
for(int i=1; i<=15; i++)
System.out.println((int)(Math.random()*7+112));
}
}
複製代碼
作者:
戴嘉禾
時間:
2018-11-19 20:49
public class Ch32
{
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