基础

读取输入

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// 多行输入元素,其中第一行几个数字表示下面几行的个数

import java.util.Arrays;
import java.util.Scanner;

public class myScanner {
Scanner sc = new Scanner(System.in);
public static void main(String[] args) {
System.out.println("输入:");
Scanner sc = new Scanner(System.in);
int m = sc.nextInt();
int n = sc.nextInt();
int[] num1 = new int[m];
int[] num2 = new int[n];
// 换成其他数据类型也一样,其他数值类型就修改int跟nextInt就可以了,
//String就把nextInt()换成next()
for(int i = 0; i < m; i ++) {
num1[i] = sc.nextInt(); // 一个一个读取
}
for(int i = 0; i < n; i ++) {
num2[i] = sc.nextInt();
}
}
}

//一行输入多个参数
Scanner sc = new Scanner(System.in);
String str = sc.nextLine(); // 读取一行

//第一行一个数字,后面每行按字符串读取
Scanner sc = new Scanner(System.in);
int line = sc.nextInt();
sc.nextLine(); // 很重要,跳到第二行
// 若直接确定行数,注释掉上面两行,加入下面一行
String[] strArr = new String[line];
// 从第二行开始读取
for(int i = 0; i < line; i++) {
strArr[i] = sc.nextLine();
}

重写hash、equals

阅读全文 »