生成指定范围内的随机数
- 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); } }
原文地址:https://www.cnblogs.com/buildnewhomeland/p/12181138.html
时间: 2024-11-07 17:30:00