生成随机数所用到的一些
Scanner
导包,在 class 之前 import java.util.Scanner;
创建对象,在 main 函数之中 Scanner sc = new Scanner(System.in);
输入数据(字符串型) String a = sc.next();
输入数据(整型) String a = sc.nextInt();
Matcher类
判断字符串是否是正整数 boolean isNum = a.matches("[0-999999]+");
math类
生成随机数random int num = (int)(Math.random()*(a1+1));
其他
将字符串转换为整型 a = Integer.parseInt(b);
比较字符串是否相等 a.equals("Y")
|