本博客为个人学习笔记用途
elipse
syso + ALT + / 快速输入 System.out.print("");
sca + ALT + / 快速输入 java.util.Scanner相关的代码
swi + ALT + / 快速输入 switch statment 相关的代码
package ch03; import java.util.Scanner; /** * * @classname: Test_structure * @time: 2020年4月24日 * @author: 嘉年华 */ public class Test_structure { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print("请输入一个字符(A,B,C):"); String ch = in.next(); switch (ch) { case "A": System.out.println("输入值为A"); break; case "B": System.out.println("输入值为B"); break; case "C": System.out.println("输入值为C"); break; default: System.out.println("输入错误"); break; } } }