標題:
亂數 (三)
[打印本頁]
作者:
tonyh
時間:
2021-1-26 10:11
標題:
亂數 (三)
產生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
*/
複製代碼
作者:
吳聲寬
時間:
2021-1-26 10:20
public class Ch11
{
public static void main(String[] args)
{
for(int i=1;i<=20;i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-26 10:20
public class Ch02
{
public static void main(String[] args)
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
王博裕
時間:
2021-1-26 10:20
public class Ch03 {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
藍健洲
時間:
2021-1-26 10:20
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args)
{
for(int i=1;i<=20;i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
劉凱閔
時間:
2021-1-26 10:20
public class Ch03 {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
卓炘暘
時間:
2021-1-26 10:21
import java.util.Scanner;
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=50; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
王睿宇
時間:
2021-1-26 10:21
public class A01 {
public static void main(String[] args) {
for(int i=1; i<=20; i+=1)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
楊小萱
時間:
2021-1-26 10:22
public class Ch05
{
public static void main(String[] args)
{
for(int i=1;i<=20;i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
紀承典
時間:
2021-1-26 10:22
public class Ch01 {
public static void main(String[] args)
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
楊澤全
時間:
2021-1-26 10:22
public class Ch02
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2