簡體   English   中英

在Java程序中獲取意外的輸出

[英]Getting unexpected outputs in java program

我為學校制作了一個Java程序,允許客戶購買火車票。 到目前為止,一切工作都非常完美,除了當我調用final方法(當前的final方法最終會更多)時,它會打印我已命令打印的方法,但是它也會輸出一些隨機的文本行,我無法確定何時。 我將在下面粘貼程序代碼,並且在運行程序時也將顯示控制台。 我會盡力指出問題所在。 非常感謝您,我希望有人能提供幫助。 ps程序應在“測試”處結束。

    import java.util.Scanner; //imports the scanner class to allow for user input

public class ticketPurchase {
    //Adding global variables to be used by various methods
    static Scanner input = new Scanner(System.in);
    static String menuChoice;
    static double childTicket = 1.20;
    static double adultTicket = 2.50;
    static double adultFlexi = 12.00;
    static double childFlexi = 8.00;
    static String ticketType;
    static String ticketChoice;
    static int adultTicketQty;
    static int childTicketQty = 0;
    static String destinationZone;
    static double adultFinalPrice;
    static double childFinalPrice;


    public static void main(String[] args) {
        menu(); //calling the menu method within the main method to start the process
    }
    public static void menu() {
        System.out.println("Press 1 for information");
        System.out.println("Press 2 to purchase Standard Tickets");
        System.out.println("Press 3 to purchase Flexi tickets");
        menuChoice = input.next(); //allowing user to choose what tickets to buy or just to see information of services

        switch(menuChoice) { //switch statement to record and output information based on users input
        case "1":{ //prints information regarding pricing, ticket age restrictions and support
            System.out.println("The standard ticket may be a single or return ticket for an adult (16+) or a child");
            System.out.println("The flexi ticket covers all journeys for one 24 hour period for either a child or an adult");
            System.out.println("A single ticket's price depends on the journey length, single or return and if it is for an adult or a child");
            System.out.println("a Flexi ticket for a child costs €8.00 and a Flexi ticket for an adult costs €12.00");
            System.out.println("Our Customer Care telephone number for this terminal is 0830462920, please call if further support is required");
            break;
        }
        case "2":{
            ticketChoice = "standard"; //records the value of standard within the ticketChoice global variable
            chooseTickets(); //initiates the choose tickets method
            break;
        }
        case "3":{
            ticketChoice = "flexi"; //record the value of flexi within the ticketChoice global variable
            chooseTickets(); 
            break;
        }
        case "a":{ //allows user to enter the admin interface 
            admin();
            break;
        }
        default:{ //allows for user to input a value outside of the options and notify's them to try again
            System.out.println("Invalid choice, please choose from 1 to 3");
            break;
        }
        }
        menu(); //recursion
    }
    public static void chooseTickets() { //payment method for choosing adult or child and quantity, and purchasing.
        System.out.println("You have chosen to purchase " + ticketChoice + " ticket(s)");
        System.out.print("Enter 1 for an adult ticket, Enter 2 for a child ticket: "); 
        String ticketAgeGroup = input.next(); //assigns users choice to string variable
        switch(ticketAgeGroup) { //allows user to choose quantity and destination based on choice of adult or child
        case "1":{//case for adult tickets
            System.out.println("you have chosen adults ticket");
            ticketType = "adult";
            System.out.print("Please enter the quantity of tickets: ");
            adultTicketQty = input.nextInt();
            System.out.print("please enter your destination zone (1, 2, 3, 4): ");
            destinationZone = input.next();
            if(ticketChoice == "flexi") { //if statement to calculate the finalPrice variable value if the ticketChoice is Flexi
                adultFinalPrice = (adultFlexi*adultTicketQty);
            }
            else {
                adultFinalPrice = (adultTicket*adultTicketQty); //else calculates the finalPrice variable value if the ticketChoice is standard
            }
            switch(destinationZone){ // switch statement to calculate the final price depending on the destination's zone and their extra amount.
            case "1":{
                adultFinalPrice = adultFinalPrice + (adultTicketQty*0); 
                break;
            }
            case "2":{
                adultFinalPrice = adultFinalPrice + (adultTicketQty*.50); //calculation to add the extra amount for the destination
                break;
            }
            case "3":{
                adultFinalPrice = adultFinalPrice + (adultTicketQty*1.0);
                break;
            }
            case "4":{
                adultFinalPrice = adultFinalPrice + (adultTicketQty*1.50);
                break;
            }
            default:{
                System.out.println("you have entered an invalid choice please choose from 1 to 4");
                //recursion if the user enters an invalid choice 
                break;
            }
            } //end of the switch statement
            System.out.println("The total price for your purchase is €" + adultFinalPrice ); 

            System.out.print("Would you like to purchase more tickets? enter 1 if so, 2 if not: "); //allows user to purchase other tickets 
            String moreTicketChoice = input.next();
            if(moreTicketChoice.equals("1")) {
                chooseTickets();
            }
            else {
                System.out.println("you have chosen against purchasing more tickets");
            }
            payment(); //initiates the payment method after user has chosen quantity and ticket type etc
        }

        case "2":{ //case for children's tickets
            System.out.println("you have chosen children's ticket");
            ticketType = "child";
            System.out.println("Please enter the quantity of tickets: ");
            childTicketQty = input.nextInt();
            System.out.print("please enter your destination zone (1, 2, 3, 4): ");
            destinationZone = input.next();
            if(ticketChoice == "flexi") { //adjusts the price if user chooses the flexi option 
                childFinalPrice = (childFlexi*childTicketQty);
            }
            else {
                childFinalPrice = (childTicket*childTicketQty);
            }
            switch(destinationZone){ //adjusts price to account for the destination's zone chosen by user
            case "1":{
                childFinalPrice = childFinalPrice + (childTicketQty*0);
                break;
            }
            case "2":{
                childFinalPrice = childFinalPrice + (childTicketQty*.50);
                break;
            }
            case "3":{
                childFinalPrice = childFinalPrice + (childTicketQty*1.0);
                break;
            }
            case "4":{
                childFinalPrice = childFinalPrice + (childTicketQty*1.50);

                break;
            }
            default:{
                System.out.println("you have entered an invalid choice please choose from 1 to 4");
                chooseTickets();
                break;
            }
            }
            System.out.println("The total price for your purchase is €" + childFinalPrice );
            System.out.print("would you like to purchase more tickets? enter 1 if so, 2 if not: "); //allows user to purchase other tickets 
            String moreTicketChoice2 = input.next();
            if(moreTicketChoice2.equals("1")) {
                chooseTickets();
            }
            else if(moreTicketChoice2.equals("2")){
                System.out.println("you have chosen against purchasing more tickets");
            }
            payment();
        }
        default:{
            System.out.println("you have entered an invalid choice please enter 1 or 2");
            chooseTickets();
            break;
        }

        }

    }
    public static void payment() { //method to complete the payment process for the purchase
        System.out.println("test");

    }
    public static void printTickets() { //method to notify the customer that their tickets are printing 

    }
    public static void admin() { //method to control the admin's interface

    }
}

這是我運行程序時遇到的錯誤(不以“ test”結尾,我不確定是什么原因導致的)

按1查看信息

按2購買標准票

按3購買Flexi門票

2

您選擇了購買標准票

成人票輸入1,兒童票輸入2:2

您選擇了兒童票

請輸入門票數量:

2

請輸入您的目標區域(1、2、3、4):2

您購買的總價格為€3.4

您想購買更多票嗎? 如果是,請輸入1,否則請輸入2:2

您已選擇不購買更多票

測試-需要程序在此處停止(臨時)

***您輸入的選項無效,請輸入1或2

您選擇了購買標准票

成人票輸入1,兒童票輸入2:***

由於您在打印測試后使用遞歸,因此方法調用棧應該使您回到:

case "2":{
        ticketChoice = "standard"; //records the value of standard within the ticketChoice global variable
        chooseTickets(); //initiates the choose tickets method
        break;
    }

然后,該menu()將再次被調用。 因此,我建議您運行添加一個使用exit()的退出功能,或將代碼放入使用布爾值標志的do while循環中以退出。

您也忘了在pay()方法之后休息一下。

這是修改后的代碼:

import java.util.Scanner;

public class Testing {
    //Adding global variables to be used by various methods
    static Scanner input = new Scanner(System.in);
    static String menuChoice;
    static double childTicket = 1.20;
    static double adultTicket = 2.50;
    static double adultFlexi = 12.00;
    static double childFlexi = 8.00;
    static String ticketType;
    static String ticketChoice;
    static int adultTicketQty;
    static int childTicketQty = 0;
    static String destinationZone;
    static double adultFinalPrice;
    static double childFinalPrice;
    static boolean shouldBeRunningAgain = true;


    public static void main(String[] args) {
        menu(); //calling the menu method within the main method to start the process
    }
    public static void menu() {
        do {
            System.out.println("Press 1 for information");
            System.out.println("Press 2 to purchase Standard Tickets");
            System.out.println("Press 3 to purchase Flexi tickets");
            menuChoice = input.next(); //allowing user to choose what tickets to buy or just to see information of services

            switch (menuChoice) { //switch statement to record and output information based on users input
                case "1": { //prints information regarding pricing, ticket age restrictions and support
                    System.out.println("The standard ticket may be a single or return ticket for an adult (16+) or a child");
                    System.out.println("The flexi ticket covers all journeys for one 24 hour period for either a child or an adult");
                    System.out.println("A single ticket's price depends on the journey length, single or return and if it is for an adult or a child");
                    System.out.println("a Flexi ticket for a child costs €8.00 and a Flexi ticket for an adult costs €12.00");
                    System.out.println("Our Customer Care telephone number for this terminal is 0830462920, please call if further support is required");
                    break;
                }
                case "2": {
                    ticketChoice = "standard"; //records the value of standard within the ticketChoice global variable
                    chooseTickets(); //initiates the choose tickets method
                    break;
                }
                case "3": {
                    ticketChoice = "flexi"; //record the value of flexi within the ticketChoice global variable
                    chooseTickets();
                    break;
                }
                case "a": { //allows user to enter the admin interface
                    admin();
                    break;
                }
                default: { //allows for user to input a value outside of the options and notify's them to try again
                    System.out.println("Invalid choice, please choose from 1 to 3");
                    break;
                }
            }
        }while (shouldBeRunningAgain);
    }
    public static void chooseTickets() { //payment method for choosing adult or child and quantity, and purchasing.
        System.out.println("You have chosen to purchase " + ticketChoice + " ticket(s)");
        System.out.print("Enter 1 for an adult ticket, Enter 2 for a child ticket: ");
        String ticketAgeGroup = input.next(); //assigns users choice to string variable
        switch(ticketAgeGroup) { //allows user to choose quantity and destination based on choice of adult or child
            case "1":{//case for adult tickets
                System.out.println("you have chosen adults ticket");
                ticketType = "adult";
                System.out.print("Please enter the quantity of tickets: ");
                adultTicketQty = input.nextInt();
                System.out.print("please enter your destination zone (1, 2, 3, 4): ");
                destinationZone = input.next();
                if(ticketChoice.equals("flexi")) { //if statement to calculate the finalPrice variable value if the ticketChoice is Flexi
                    adultFinalPrice = (adultFlexi*adultTicketQty);
                }
                else {
                    adultFinalPrice = (adultTicket*adultTicketQty); //else calculates the finalPrice variable value if the ticketChoice is standard
                }
                switch(destinationZone){ // switch statement to calculate the final price depending on the destination's zone and their extra amount.
                    case "1":{
                        adultFinalPrice = adultFinalPrice + (0);
                        break;
                    }
                    case "2":{
                        adultFinalPrice = adultFinalPrice + (adultTicketQty*.50); //calculation to add the extra amount for the destination
                        break;
                    }
                    case "3":{
                        adultFinalPrice = adultFinalPrice + (adultTicketQty*1.0);
                        break;
                    }
                    case "4":{
                        adultFinalPrice = adultFinalPrice + (adultTicketQty*1.50);
                        break;
                    }
                    default:{
                        System.out.println("you have entered an invalid choice please choose from 1 to 4");
                        //recursion if the user enters an invalid choice
                        break;
                    }
                } //end of the switch statement
                System.out.println("The total price for your purchase is €" + adultFinalPrice );

                System.out.print("Would you like to purchase more tickets? enter 1 if so, 2 if not: "); //allows user to purchase other tickets
                String moreTicketChoice = input.next();
                if(moreTicketChoice.equals("1")) {
                    chooseTickets();
                }
                else {
                    System.out.println("you have chosen against purchasing more tickets");
                }
                payment(); //initiates the payment method after user has chosen quantity and ticket type etc
            }

            case "2":{ //case for children's tickets
                System.out.println("you have chosen children's ticket");
                ticketType = "child";
                System.out.println("Please enter the quantity of tickets: ");
                childTicketQty = input.nextInt();
                System.out.print("please enter your destination zone (1, 2, 3, 4): ");
                destinationZone = input.next();
                if(ticketChoice.equals("flexi")) { //adjusts the price if user chooses the flexi option
                    childFinalPrice = (childFlexi*childTicketQty);
                }
                else {
                    childFinalPrice = (childTicket*childTicketQty);
                }
                switch(destinationZone){ //adjusts price to account for the destination's zone chosen by user
                    case "1":{
                        childFinalPrice = childFinalPrice + (0);
                        break;
                    }
                    case "2":{
                        childFinalPrice = childFinalPrice + (childTicketQty*.50);
                        break;
                    }
                    case "3":{
                        childFinalPrice = childFinalPrice + (childTicketQty*1.0);
                        break;
                    }
                    case "4":{
                        childFinalPrice = childFinalPrice + (childTicketQty*1.50);

                        break;
                    }
                    default:{
                        System.out.println("you have entered an invalid choice please choose from 1 to 4");
                        chooseTickets();
                        break;
                    }
                }
                System.out.println("The total price for your purchase is €" + childFinalPrice );
                System.out.print("would you like to purchase more tickets? enter 1 if so, 2 if not: "); //allows user to purchase other tickets
                String moreTicketChoice2 = input.next();
                if(moreTicketChoice2.equals("1")) {
                    chooseTickets();
                }
                else if(moreTicketChoice2.equals("2")){
                    System.out.println("you have chosen against purchasing more tickets");
                }
                payment();
                break;
            }
            default:{
                System.out.println("you have entered an invalid choice please enter 1 or 2");
                chooseTickets();
                break;
            }

        }

    }
    public static void payment() { //method to complete the payment process for the purchase
        System.out.println("test");
        shouldBeRunningAgain = false;

    }
    public static void printTickets() { //method to notify the customer that their tickets are printing 

    }
    public static void admin() { //method to control the admin's interface

    }
}

希望對您有幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM