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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
| import java.util.Scanner;
public class S09E06重构类 { public static void main(String[] args) { String[][] 表头; 表头 = new String[][]{ {"水果", "数量", "单价"}, {"苹果", "10", "5.5"}, {"香蕉", "20", "3.5"}, {"西瓜", "30", "4.5"}, {"葡萄", "40", "6.5"}, {"荔枝", "50", "7.5"}, {"柠檬", "60", "8.5"}, {"梨", "70", "9.5"}, {"桃", "80", "10.5"}, {"柚子", "90", "11.5"}, {"桔子", "100", "12.5"}, }; Scanner cin = new Scanner(System.in); while (true) { 显示表格(表头); System.out.println("请选择操作:");
System.out.println("1.查找" + "\t" + "2.修改"+ "\t" + "3.删除"+ "\t" + "4.输出"+ "\t" + "5.退出"); int 选择 = cin.nextInt(); switch (选择) { case 1: System.out.println("请输入要查找的水果名称:"); String 水果名称 = cin.next(); 查找水果(水果名称, 表头); break; case 2: System.out.println("请输入要修改的水果名称:"); String 水果名称2 = cin.next(); System.out.println("请输入要修改的数量:"); int 数量 = cin.nextInt(); System.out.println("请输入要修改的单价:"); double 单价 = cin.nextDouble(); 修改水果(水果名称2, 数量, 单价, 表头); break; case 3: System.out.println("请输入要删除的水果名称:"); String 水果名称3 = cin.next(); 删除水果(水果名称3, 表头); break; case 4: 输出水果(表头); break; case 5: System.out.println("退出"); return; default: System.out.println("输入错误,请重新输入"); break; } } }
public static void 查找水果(String 水果名称, String[][] 表头) { for (int i = 1; i < 表头.length; i++) { if (表头[i][0].equals(水果名称)) { System.out.println("水果名称:" + 表头[i][0]); System.out.println("数量:" + 表头[i][1]); System.out.println("单价:" + 表头[i][2]); } } } public static void 修改水果(String 水果名称, int 数量, double 单价, String[][] 表头) { for (int i = 1; i < 表头.length; i++) { if (表头[i][0].equals(水果名称)) { 表头[i][1] = String.valueOf(数量); 表头[i][2] = String.valueOf(单价); } } } public static void 删除水果(String 水果名称, String[][] 表头) { for (int i = 1; i < 表头.length; i++) { if (表头[i][0].equals(水果名称)) { 表头[i][0] = ""; 表头[i][1] = ""; 表头[i][2] = ""; } } } public static void 输出水果(String[][] 表头) { for (int i = 1; i < 表头.length; i++) { if (!表头[i][0].equals("")) { System.out.println("水果名称:" + 表头[i][0]); System.out.println("数量:" + 表头[i][1]); System.out.println("单价:" + 表头[i][2]); } } }
public static void 显示表格(String[][] 表头) { for (int i = 0; i < 表头.length; i++) { for (int j = 0; j < 表头[i].length; j++) { System.out.print(表头[i][j] + "\t"); } System.out.println(); } } }
|