Вот пример того, как должен выглядеть вывод !!
Моя программа для отображения сводки заказов для приобретенных ноутбуков использует цикл (1) while для обработки нескольких ноутбуков,(2) если-либо, чтобы получить имя / цену ноутбука;или сообщение об ошибке «Неверный выбор! Попробуйте еще раз», a (3) вложено, если выяснить, когда выбор портативного компьютера действителен для продолжения обработки. И (4) вложено, если печатать сводку заказов только при покупке ноутбуков.
Когда я вводю неправильный номер (например, 8) в выбор, оператор if все равно выполняется, а не другой, который находится ниже него.
Когда я вписываю действительное число в выбор, он запрашивает количество, но когда я вводю количество, как бы я добавил этот пользовательский ввод в сводку заказа вместо программы, возвращающейся в верхнюю часть цикла?
Я очень плохо знаком с Java, как должен выглядеть мой код для получения правильного вывода?
Вот мой текущий код (JAVA)
public static void main(String[] args) {
char cont='Y';
int qty=0;
int trigger=0;
double total=0;
double subtotal=0;
double tax=0;
double price;
double lineItem=0;
String orderSummary=" ";
String laptop=" ";
Scanner input = new Scanner(System.in);
Calendar dateTime = Calendar.getInstance();
//Displays a list of laptops with prices and asked user for their choice. Prompt #1
int choice = 0;
while (choice >= 0) {
System.out.printf("%nTOP LAPTOPS OF %tY"
+ "%n%n1. %-23s %7s $%,9.2f"
+ "%n2. %-23s %8s %,9.2f"
+ "%n3. %-23s %8s %,9.2f"
+ "%n4. %-23s %8s %,9.2f"
+ "%n5. %-23s %8s %,9.2f"
+ "%n%nEnter your choice: ",
dateTime,
"HP Envy 13", " ", 799.99,
"Asus ZenBook 13 UX333FA", " ", 849.99,
"Dell XPS 13", " ", 989.99,
"Alienware Area 51-m", " ", 1999.99,
"Razer Blade Stealth", " ", 1299.00);
choice = input.nextInt();
if (choice < 6 || choice > 0) {
System.out.printf("Enter the quantity:");
qty = input.nextInt();
} else {
System.out.printf("Invalid choice! Try again.%n%n");
System.out.printf("Enter 'Y' to add a laptop to your purchase or 'N' to exit: ");
cont = input.next().charAt(0);
}
if (cont == 'Y') {
continue;
}
if (cont == 'N') {
System.exit(0);
}
//The following if-else prints a $ sign for the first line item
if (trigger == 1) {
orderSummary += String.format("%n%, -9d %-30s %8s $%,17.2f", qty, laptop, " ", lineItem);
trigger = 0;
} //End else for no $ sign
//The following statement prints the order summary of the laptops purchased.
//This should be done when there are no more laptops to process
if (choice > 0) {
if (choice < 6) {
tax = subtotal * .0825;
total = subtotal + tax;
orderSummary += String.format("%n%n%34s Subtotal %6s %,17.2f"
+ "%n%31s Tax @ 8.25%% %6s %,17.2f"
+ "%n%n%37s TOTAL %5s $%,17.2f%n",
" ", " ", subtotal,
" ", " ", tax,
" ", " ", total);
System.out.printf("%s", orderSummary);
break;
} //End if valid choice range ends print order summary
} //End if valid choice range begins
}
}