標題:
亂數 (二)
[打印本頁]
作者:
tonyh
時間:
2021-1-26 09:52
標題:
亂數 (二)
運用 random() 函式搭配for迴圈,
產生20組範圍介於0.00000~0.99999之隨機亂數.
public class Ch31
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
劉凱閔
時間:
2021-1-26 10:03
public class Ch02 {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
王博裕
時間:
2021-1-26 10:03
public class Ch03 {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
楊澤全
時間:
2021-1-26 10:04
public class Ch03
{
public static void main(String[] args)
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-26 10:04
public class Ch02
{
public static void main(String[] args)
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
卓炘暘
時間:
2021-1-26 10:04
import java.util.Scanner;
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=50; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
藍健洲
時間:
2021-1-26 10:05
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args)
{
for(int i=1;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
王睿宇
時間:
2021-1-26 10:06
public class A01 {
public static void main(String[] args) {
double n;
for(int i=1; i<=20; i+=1){
System.out.println(Math.random());
}
}
}
複製代碼
作者:
楊小萱
時間:
2021-1-26 10:06
本帖最後由 楊小萱 於 2021-1-26 10:07 編輯
public class Ch05
{
public static void main(String[] args)
{
for(int i=1;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
紀承典
時間:
2021-1-26 10:07
public class Ch01 {
public static void main(String[] args)
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
吳聲寬
時間:
2021-1-26 10:07
public class Ch11
{
public static void main(String[] args)
{
for(int i=1;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-26 10:19
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://istak.org.tw/seed/)
Powered by Discuz! 7.2