標題:
亂數 (三)
[打印本頁]
作者:
tonyh
時間:
2012-10-8 20:56
標題:
亂數 (三)
本帖最後由 tonyh 於 2012-10-8 21:03 編輯
產生20個範圍介於1~10的隨機整數亂數.
public class ch21
{
public static void main (String args[])
{
for(int i=1; i<=20; i++)
{
System.out.println((int)(Math.random()*10+1)); //產生介於1~10的隨機亂數
}
}
}
/*
System.out.println(Math.random()); //產生介於0.00000~0.999999(無窮小數)的隨機亂數
System.out.println(Math.random()*10); //產生介於0.00000~9.999999(無窮小數)的隨機亂數
System.out.println(Math.random()*10+1); //產生介於1.00000~10.999999(無窮小數)的隨機亂數
System.out.println((int)(Math.random()*10+1)); //產生介於1~10的隨機亂數
*/
複製代碼
作者:
劉永記
時間:
2012-10-8 20:57
public class ch21 //類別
{
public static void main (String arg[]) //方法
{
for (int i=1;i<=20;i++)
System.out.println((int)(Math.random()*10+1));
}
}
複製代碼
作者:
孫家祥
時間:
2012-10-8 20:57
回復
1#
tonyh
public class ch19
{
public static void main(String args[])
{
double x;
int y;
for (int i=1;i<=20;i+=1)
{
y=(int)(Math.random()*46)+1;
//y=Integer.parseInt(x*46);
System.out.println("開獎明牌:"+y);
}
}
}
複製代碼
作者:
陳建志
時間:
2012-10-8 21:00
public class ch21
{
public static void main(String args[])
{
for ( int i=1; i<=20; i++)
{
System.out.println((int)(Math.random()*10+1));
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2