public class Test4 {
public static void main(String[] args) {
int x=(int) (Math.random()*100);//100以内的随机数 int y=(int) Math.random();//0或者1 System.out.println(x); System.out.println(y); }}
本文共 238 字,大约阅读时间需要 1 分钟。
public class Test4 {
public static void main(String[] args) {
int x=(int) (Math.random()*100);//100以内的随机数 int y=(int) Math.random();//0或者1 System.out.println(x); System.out.println(y); }}
转载于:https://www.cnblogs.com/Yxxxxx/p/6925393.html