標題:
亂數 (三)
[打印本頁]
作者:
tonyh
時間:
2019-7-13 16:08
標題:
亂數 (三)
產生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-7-13 16:29
public class Ch01 {
public static void main(String[] args) {
for(int i=1;i<=20;i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
黃安立
時間:
2019-7-13 16:30
public class ch01
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-13 16:31
public class Ch01
{
public static void main(String args[])
{
for(int i=1;i<=20;i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
陳柏霖
時間:
2019-7-13 16:31
public class World {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
for(int i=0; i<20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
蔡季庭
時間:
2019-7-13 16:37
public class Ha {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
{
for(int i=1;i<=20;i++)
system.out.print(Math.random()*3+1);
}
}
}
複製代碼
作者:
蔡依宸
時間:
2019-7-13 16:58
public class World
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
戴安利
時間:
2019-7-20 15:34
package haha;
public class haha
{
public static void main(String[] args)
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
戴唯陞
時間:
2019-7-20 15:35
public class hahahahaha {
public static void main(String[] args) {
// TODO 自動產生的方法
for(int i=1; i<=20;i++)
System.out.println(Math.random()*3+1); }
}
複製代碼
作者:
戴偉宸
時間:
2019-7-20 15:36
public class hihi {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
洪子涵
時間:
2019-8-9 16:25
public class Ch01 {
public static void main(String[] args) {
double r;
for(int i=1;i<=20;i++)
{
System.out.println((int)(Math.random()*3+1));
}
}
}
複製代碼
作者:
洪藜芸
時間:
2019-8-9 16:27
public class Ci {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
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