Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Airline.java File: // Airline.java - This program determines if an airline passenger is // eligible for a 25% discount. import javax.swing.*; public class Airline {

image text in transcribed

Airline.java File:

// Airline.java - This program determines if an airline passenger is // eligible for a 25% discount.

import javax.swing.*;

public class Airline { public static void main(String args[]) { String passengerName = ""; // Passenger's name. String ageString = ""; // String version of passenger's age. int passengerAge = 0; // Passenger's age.

// This is the work done in the housekeeping() method passengerName = JOptionPane.showInputDialog("Enter passenger's name: "); ageString = JOptionPane.showInputDialog("Enter passenger's age: "); passengerAge = Integer.parseInt(ageString); // This is the work done in the detailLoop() method // Test to see if this customer is eligible for a 25% discount.

// This is the work done in the endOfJob() method System.exit(0); }

}

In this lab, you complete a partially written Java program for an airline that offers a 25 percent discount to passengers who are 6 years old or younger and the same discount to passengers who are 65 years old or older. The program should request a passengers name and age, and then print whether the passenger is eligible or not eligible for a discount. 1. Open the file named Airline. java using Notepad or the text editor of your choice. 2. Variables have been declared and initialized for you, and the input statements have been written. Read them carefully before you proceed to the next step. 3. Design the logic deciding whether to use AND or OR logic. Write the decision statement to identify when a discount should be offered and when a discount should not be offered. 4. Be sure to include output statements telling whether or not the customer is eligible for a discount. 5. Compile the program. 6. Execute the program, entering the following as input a. Customer Name: Wil Moriarty Customer Age 11 What is the output? b. Customer Name: James Chung Customer Age 64 What is the output? c. Customer Name: Darlene Sanchez Customer Age 75 What is the output? d. Customer Name: Ray Sanchez Customer Age 60 What is the output? e. Customer Name Tommy Sanchez Customer Age: 6 What is the output? f Customer Name: Amy Patel Customer Age:8 What is the output

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Current Trends In Database Technology Edbt 2004 Workshops Edbt 2004 Workshops Phd Datax Pim P2panddb And Clustweb Heraklion Crete Greece March 2004 Revised Selected Papers Lncs 3268

Authors: Wolfgang Lindner ,Marco Mesiti ,Can Turker ,Yannis Tzitzikas ,Athena Vakali

2005th Edition

3540233059, 978-3540233053

More Books

Students also viewed these Databases questions

Question

4. Are there any disadvantages?

Answered: 1 week ago

Question

=+ Have they changed the way employers view IP?

Answered: 1 week ago