java编程 随机产生6位的数字
发布网友
发布时间:2022-10-18 00:48
我来回答
共3个回答
热心网友
时间:2023-11-05 08:10
String s = "";
while(s.length()<6)
s+=(int)(Math.random()*10);
热心网友
时间:2023-11-05 08:11
import java.util.*;
class Num {
Integer [] rand =new Integer [6];
public void generate(){
for(int i=0;i<rand.length;i++)
rand[i]=(Integer)new Random().nextInt(9);
for(Integer i:rand)System.out.println(i);
}
public static void main(String [] args){
Num n =new Num();
n.generate();
}
}
public static void main(String [] args){
Num n =new Num();
n.generate();
}
}
D:\>javac Num.java
D:\>java Num
8
6
4
4
0
2
热心网友
时间:2023-11-05 08:11
什么问题,在具体点!