標題:
[隨堂測驗] 亂數 (五)
[打印本頁]
作者:
may
時間:
2023-1-6 19:42
標題:
[隨堂測驗] 亂數 (五)
產生30組範圍介於123~132之隨機亂數.
作者:
洪浚恩
時間:
2023-1-6 20:20
本帖最後由 洪浚恩 於 2023-1-6 20:55 編輯
public class Ch01
{
public static void main(String args[])
{
int q;
int i=0;
while(i<=30)
{
q=(int)(Math.random()*10+123);
System.out.println(q);
i++
}
}
}
複製代碼
作者:
吳侑諶
時間:
2023-1-6 20:21
本帖最後由 吳侑諶 於 2023-1-6 20:29 編輯
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法
int r;
for(int i=1;i<=30;i++)
{
r=(int)(Math.random()*10+123);
System.out.println(r);
}
}
}
複製代碼
作者:
郭又瑄
時間:
2023-1-6 20:21
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int r;
for(int i=1;i<=30;i++)
{
r=(int)(Math.random()*10+123);
System.out.println(r);
}
}
}
複製代碼
作者:
吳溦珊
時間:
2023-1-6 20:21
public class Ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
for(int i=1;i<=30;i++){
int r;
r=(int)(Math.random()*10+123);
System.out.println(r);
}
}
}
複製代碼
作者:
陳柏融
時間:
2023-1-6 20:21
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
double d;
for(int i=1;i<=30;i++){
d=(int)(Math.random()*10+123);
System.out.println(d);}
}
}
複製代碼
作者:
尤爾帆
時間:
2023-1-6 20:22
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
for(int i=1;i<=30;i++){
double r;
r=(int)(Math.random()*10+123);
System.out.println(r);
}
}
}
複製代碼
作者:
賴聿均
時間:
2023-1-6 20:23
public class Ch01 {
public static void main(String args[]){
int r;
for(int i=1;i<=30;i++){
r=(int)(Math.random()*10+123);
System.out.println(r);
}
}
}
複製代碼
作者:
尤爾璿
時間:
2023-1-6 20:24
本帖最後由 尤爾璿 於 2023-1-6 20:56 編輯
public class Ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
double r;
while( i<=30)
for(int i=1;i<=30;i++){
r=(Math.random()*10+123);
System.out.println(r);
}
}
}
複製代碼
作者:
吳侑諶
時間:
2023-1-6 20:52
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法
int i=0;
while(i<=30)
{
System.out.println((int)(Math.random()*10+123));
i++;
}
}
}
複製代碼
作者:
郭又瑄
時間:
2023-1-6 20:53
本帖最後由 郭又瑄 於 2023-1-6 20:55 編輯
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=0;
while(i<=30)
{
System.out.println((int)(Math.random()*10+123));
i++;
}
}
}
複製代碼
作者:
賴聿均
時間:
2023-1-6 20:53
public class Ch01 {
public static void main(String args[]){
int i=0;
while(i<30){
System.out.println((int)(Math.random()*10+123));
i++;
}
}
}
複製代碼
作者:
吳溦珊
時間:
2023-1-6 20:53
本帖最後由 吳溦珊 於 2023-1-6 20:55 編輯
public class Ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1;
while(i<=30){
System.out.println((int)(Math.random()*10+123));
i++;
}
}
}
複製代碼
作者:
陳柏融
時間:
2023-1-6 20:54
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
double d;
int i=0;
while(i<=30){
d=(int)(Math.random()*10+123);
System.out.println(d);
i++;}
}
}
複製代碼
作者:
尤爾帆
時間:
2023-1-6 20:56
package ch01;
public class ch01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=0;
while(i<=30){
System.out.println(r=(int)(Math.random()*10+123));
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2