標題:
亂數 (二)
[打印本頁]
作者:
tonyh
時間:
2019-7-4 09:57
標題:
亂數 (二)
運用 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());
}
}
複製代碼
作者:
宋威廷
時間:
2019-7-4 10:13
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
陳柏銓
時間:
2019-7-4 10:13
public class Ch124 {
public static void main(String[] args) {
double x;
for(int i=1; i<=20; i++)
{x=Math.random();
System.out.println(x);}
}
}
複製代碼
作者:
古昇暘
時間:
2019-7-4 10:13
package ok;
import java.util.Scanner;
public class foradd2 {
public static void main(String[] args) {
for(int i=1;i<=20;i++)
{
System.out.println(Math.random());
}
}
}
複製代碼
作者:
陳致翰
時間:
2019-7-4 10:15
package Ch01;
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());
}
}
複製代碼
作者:
李承洋
時間:
2019-7-4 10:15
public class Ch15 {
public static void main(String[] args) {
for(int i=1;i<=20;i++){
System.out.println(Math.random());
}
}
}
複製代碼
作者:
賴駿榮
時間:
2019-7-4 10:16
public class ch02
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
蔡杰恩
時間:
2019-7-4 10:16
public class Ch87 {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
李從赫
時間:
2019-7-4 10:16
public class Ch30 {
public static void main(String[] args) {
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
}
複製代碼
作者:
張啟廣
時間:
2019-7-4 10:17
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
葉子于
時間:
2019-7-4 10:18
public class ch02
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-4 10:18
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
李佳諭
時間:
2019-7-4 10:28
public class Ch31 {
public static void main(String[] args) {
for(int i=1;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
劉欽文
時間:
2019-7-4 10:28
public class Ch02
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
古蕾娜
時間:
2019-7-4 10:28
import java.util.Scanner;
public class Ch05 {
public static void main(String[] args)
{
for (int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
林宥杰
時間:
2019-7-4 10:29
public class Ch01
{
public static void main(String args[])
{
for(int i=1;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
謝宗佑
時間:
2019-7-4 10:29
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
李沛儒
時間:
2019-7-4 10:29
public class Ch00
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
王煦
時間:
2019-7-4 10:29
public class Ch02
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
陳璽安
時間:
2019-7-4 10:30
public class Ch31
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
吳庭慈
時間:
2019-7-4 10:32
public class Ch01
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2