我的 Java 静态销售点 (POS) 系统有问题。
我在 for 循环和 if 语句的帮助下使用 2D 数组,但在收到我的 POS 时显示数组列时遇到问题。
public static void productdata(){
for(int row = 0; row < Product.length; row++) {
for (int col = 0; col < 4 ; col++){
Product[row][col] = "";
}
}
for(int row = 0; row < POS.length; row++){
for (int col = 0; col < 3 ; col++){
if(col == 0){
POS[row][col] = "0";
} else{
POS[row][col] = "";
}
}
}
// Product [x] [y] x = row; y = col //
Product [0] [0] = "PP1"; // PRODUCT CODE //
Product [0] [1] = "\t9350"; // PRODUCT PRICE //
Product [0] [2] = "FVP PowerPack Guyabano\t\t\t\t"; // PRODUCT NAME //
Product [0] [3] = "12"; // PRODUCT QUANTITY //
在所附图片中,我展示了用于产品数据的数组。问题是,购买产品的收据上显示的是产品代码 ( PP1 ) [--见红色小框--] 而不是产品名称 ( FVP PowerPack Guyabano ) [--见紫色框--] ,我不知道如何更改它或显示产品名称...
System.out.print("\n============================================================================");
System.out.print("\n POS SYSTEM");
System.out.print("\n FIRST VITA PLUS");
System.out.print("\n 2/F Suntree Tower,");
System.out.print("\n No. 13 Meralco Avenue,");
System.out.print("\n Ortigas Center, Pasig City");
System.out.print("\n 1605 Philippines\n");
if (TryAgain == 'n' || TryAgain == 'N'){
System.out.print("\n \t\t\t\t****PRODUCT PURCHASED****\n\n");
stop4:
for(int row = 0; row < POS.length; row++){
for(int col = 0; col < 3; col++){
if((POS[row][col].equals("0")) || (POS[row][col].equals(""))){
break stop4;
} else{
System.out.print(POS[row][col] + "\t");
}
}
System.out.println();
Double totalprice = Double.parseDouble(POS[row][2]);
TOTAL = totalprice + TOTAL;
}
System.out.print("\n============================================================================");
...在这一部分,我展示了输出和创建客户收据的方法(带有产品代码(应该是产品名称)、产品价格和购买数量)。