生成随机数(Random类)和获取用户输入(Scanner类)
程序员文章站
2022-05-04 12:05:30
生成指定范围内的随机数 Math.random() 生成随机数,随机数在0到1之间,类型是 double。 public class randCase { public static void main(String[] args) { double rand = 0; for (int i = 0 ......
生成指定范围内的随机数
- math.random() 生成随机数,随机数在0到1之间,类型是 double。
public class randcase { public static void main(string[] args) { double rand = 0; for (int i = 0; i < 10; i++) { rand = math.random(); system.out.println(rand); } } }
从标准输入读取字符串和整数(获取用户的输入)
- scanner in = new scanner(system.in) 连接到标准输入。其中 in 表示变量。
- in.nextline() 可以从命令行读取一行字符串。
- in.nextint() 可以从命令行读取一个正整数。
- 点操作符是 java 中的操作符,和 system.out.printf() 和 math.random() 中的点是一样的操作符。是对点前面的“变量”进行点后面的“操作”。所谓的“操作”就是指方法,也就是我们一直写的 main 方法的那个方法。这些操作就是使用一个一个的方法。使用方法我们叫做调用方法(invoke a method)。
- import java.util.scanner; 是告诉程序,scanner 这个类型在哪里。
- 创建scanner类型的“变量”,它的作用是帮我们从标准输入中读取数据。
import java.util.scanner; // 告诉程序scanner类型在哪 public class scannercase { public static void main(string[] args) { // scanner.nextline(); 从命令行中读取一行字符串。 scanner in = new scanner(system.in); system.out.println("请输入一句话:"); string str = in.nextline(); system.out.println(str); // scanner.nextint(); 从命令行中读取一行正整数。 system.out.println("请输入一个数字:"); int num = in.nextint(); system.out.println(num); } }