標題:
亂數 (三)
[打印本頁]
作者:
tonyh
時間:
2019-7-4 09:58
標題:
亂數 (三)
產生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-4 10:14
package ok;
public class foradd2
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
陳致翰
時間:
2019-7-4 10:16
本帖最後由 陳致翰 於 2019-7-4 10:36 編輯
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((int)(Math.random()*3+1));
}
}
複製代碼
作者:
陳柏銓
時間:
2019-7-4 10:17
public class Ch124 {
public static void main(String[] args) {
double x;
for(int i=1; i<=20; i++)
{
x=Math.random()*3+1;
System.out.println((int)x);}
}
}
複製代碼
作者:
李承洋
時間:
2019-7-4 10:17
public class Ch15 {
public static void main(String[] args) {
for(int i=1;i<=20;i++){
System.out.println((int)(Math.random()*3+1));
}
}
}
複製代碼
作者:
李從赫
時間:
2019-7-4 10:18
本帖最後由 李從赫 於 2019-7-4 10:28 編輯
public class Ch30 {
public static void main(String[] args) {
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
}
複製代碼
作者:
張啟廣
時間:
2019-7-4 10:28
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-4 10:28
public class Ch87 {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
古蕾娜
時間:
2019-7-4 10:29
import java.util.Scanner;
public class Ch05 {
public static void main(String[] args)
{
for (int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
葉子于
時間:
2019-7-4 10:29
public class Ch32
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-4 10: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-4 10:30
public class Ch02
{
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-4 10: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-4 10:30
public class Ch00
{
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-4 10:31
public class Ch32 {
public static void main(String[] args) {
for(int i=1;i<=20;i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
吳庭慈
時間:
2019-7-4 10: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-4 10:35
本帖最後由 賴駿榮 於 2019-7-4 10:40 編輯
public class ch02
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
劉欽文
時間:
2019-7-4 10:36
public class Ch33
{
public static void main(String args[])
{
for(int i=1; i<=20; i++)
System.out.println((int)(Math.random()*3+1));
}
}
複製代碼
作者:
謝宗佑
時間:
2019-7-4 10:37
public class Ch01
{
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