標題:
亂數 (二)
[打印本頁]
作者:
tonyh
時間:
2019-7-13 16:08
標題:
亂數 (二)
運用 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-13 16:28
public class Ch01 {
public static void main(String[] args) {
for(int i=1;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
陳柏霖
時間:
2019-7-13 16:29
public class World {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
for(int i=0; i<20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
黃安立
時間:
2019-7-13 16:29
public class ch01 {
public static void main(String[] args) {
for (int i = 1; i <= 20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-13 16:29
public class Ch01
{
public static void main(String args[])
{
for(int i=1;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
蔡依宸
時間:
2019-7-13 16:32
public class World {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
for(int i=0;i<=20;i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
蔡季庭
時間:
2019-7-13 16:37
public class Ha {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
{
for(int i=1;i<=20;i++)
system.out.print(Math.random());
}
}
}
複製代碼
作者:
戴安利
時間:
2019-7-20 15:32
package haha;
public class haha
{
public static void main(String[] args)
{
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
戴唯陞
時間:
2019-7-20 15:34
public class hahahahaha {
public static void main(String[] args) {
// TODO 自動產生的方法
for(int i=1; i<=20;i++)
System.out.println(Math.random()); }
}
複製代碼
作者:
戴偉宸
時間:
2019-7-20 15:35
public class hihi {
public static void main(String[] args) {
for(int i=1; i<=20; i++)
System.out.println(Math.random());
}
}
複製代碼
作者:
洪子涵
時間:
2019-8-9 16:24
public class Ch01 {
public static void main(String[] args) {
double r;
for(int i=1;i<=20;i++)
{
System.out.println(Math.random());
}
}
}
複製代碼
作者:
洪藜芸
時間:
2019-8-9 16:25
public class Ci {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
for(int i=1;i<=20;i++)
{
System.out.println(Math.random());
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2