Нужно добавить подтверждение пользователя и промежуточный итог в простую систему тикетов - PullRequest
0 голосов
/ 17 мая 2019

Мне нужно выполнить текущее задание, в которое я вносил некоторые изменения, и я застрял на том, что, как я надеюсь, станет моей последней проблемой перед отправкой

Мне нужно создать простую систему продажи билетов в кинотеатр, и я смог создать (с помощью других опытных разработчиков) работающую систему. Однако система продажи билетов должна запрашивать у пользователя подтверждение для продолжения метода и показывать текущую общую стоимость. Подтверждением должен быть пользователь, вводящий число 1, если нет, чтобы вывести сообщение об ошибке.

Я пытался использовать again = br.readLine(); для вывода 1 для подтверждения покупки, я также пытался импортировать класс java.util.Scanner для ввода и использовать int для создания сообщения об ошибке, но оно продолжает отображать ошибки ,

 package ticketingsystem;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class ticketingsystem {

    enum TicketType {
// I chose to use the enum class for the ticket prices, //
// as it made it much easier to use a switch statement, instead of multiple if statements. //        
        CHILD(18), ADULT(36), SENIOR(32.5);
//Enum classes are needed to be used in upper case, otherwise the program will crash//
//as I discovered//        
        TicketType(double price) {
            this.price = price;
        }

        private double price;

        public double getPrice() {
            return price;
        }
    }

    public static void main(String[] args) throws IOException {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        //As the program needed the ability to run in an indefinite loop constantly adding //
        //calculations, I chose to use buffered reader, as it buffered the method each loop//
        //continuing to add a total number.//

        String type, again;
        int quantity = 0;
        // This is where the new calculation starts, it is set at 0 before being calculated and
        //added to the total price.//
        double totalPrice = 0;
        TicketType ticketType;
        //We link the TicketType calculations to the enum class, hence//
        // TicketType ticketType.//

        System.out.println("Welcome to the cinemas!");

        System.out.println("MAIN MENU\n");
        System.out.println("Cinema has the following ticketing options\n");
        System.out.println("1 = Child (4-5 yrs)");
        System.out.println("2 = Adult (18+ yrs)");
        System.out.println("3 = Senior (60+ yrs)");

        do {
            //Our loop calculation method starts here//
            System.out.print("\nEnter your option: ");

            type = br.readLine();

            switch (type.toLowerCase()) {
                case "1":
                    ticketType = TicketType.CHILD;
                    break;

                case "2":
                    ticketType = TicketType.ADULT;
                    break;

                default:
                    ticketType = TicketType.SENIOR;
                    break;
            }

            System.out.print("Enter total No of tickets: ");

            quantity = Integer.parseInt(br.readLine());

            totalPrice += ticketType.getPrice() * quantity;
            //totalPrice is the ticketType cost (hence the += operator), times//
            //the quantity.//
            System.out.printf("--> You are purchasing %s - %s Ticket(s) at $%s\n", quantity, ticketType, ticketType.getPrice());
            System.out.println("Press 1 to confirm purchase");

            //This is where we confirm the purchase//
            // This is where the current total cost needs to be output //
            System.out.print("\nDo you wish to continue?  (Y/N) : ");

            again = br.readLine();

        } while (again.equalsIgnoreCase("y"));
        //This is where the calculation method ends (as we are using a do/while loop).//
        // The while statement means that if we type "y", the loop will begin again with a buffer.//
        //If we type N, the loop will end, and the program will continue running past the loop.//
        System.out.printf("\n==> Total Price : $%s \n", totalPrice);
    }
}

1 Ответ

1 голос
/ 17 мая 2019

Если вы хотите, чтобы пользователь нажимал 1, чтобы принять покупку, то просто задайте простой if...else после того, как задаете этот вопрос.Что-то вроде:

String confirmation = br.readLine();
if (confirmation.equals("1")) {
    totalPrice += ticketType.getPrice() * quantity;
    System.out.println("Current total is: " + totalPrice);
} else {
    System.out.println("You did not press 1 so ticket purchase cancelled");
    System.out.println("Current cost is still: " + totalPrice);
}

Таким образом, он будет обновлять итоговое значение, только если они нажмут 1.

Пример

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...