1. 关键字
package 申明一个包import 导入一个包
2. Scanner
Scanner sc = new Scanner(System.in);String strName = sc.next();int c = sc.nextInt();