This problem is inspired by the book's Problem P6.10 on page 304. You are to write an application to pre-sell a limited number of movie tickets. The simple user interface will be contained in Program.java and the object to implement this is referred to as TicketSeller and consists of only the following public methods: public TicketSeller(int initialTicketAllotment) - Specify the number of tickets you want to selI. public int requestTickets (int ticketRequest) - Allows buyer to request a specific number of tickets. Returns the number of tickets remaining if the number requested is within the max allowable and does not exceed the number remaining. Returns TicketSeller. TOO_MANY_TICKETS_REQUESTED if there are fewer remaining tickets than requested or the number of requested exceeds TicketSeller.MAXIMUM_TICKETS ALLOWED. Since the normal result is going to be zero or more tickets (up to the maximum allowed), use a negative number to represent the constant value for too many tickets requested. Note that one of these constants is private and one is public. Which one needs to be exposed to the user? public int getNumberofBuyers () - Tracks number of ticket buyers. You only count buyers who have fulfilled a request. Errors don't count. Your Program.java should contain code to test your TicketSeller object.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Each buyer caan buyno more than 4 tickets

Presell 9 ticket. All request but a request for 0 tickets are request too Manyticket

Use netbeans

Your test code for this project will be in Program.java and will implement a simple user interface. Here is a sample run:
Input the number of tickets you want to sell: 8
Input requested tickets: 1
Thank you for your purchase. There are 7 tickets remaining.
Input requested tickets: 2
Thank you for your purchase. There are 5 tickets remaining.
Input requested tickets: 6
Too many tickets requested, please try again.
Input requested tickets: 9
Too many tickets requested, please try again.
Input requested tickets: 3
Thank you for your purchase. There are 2 tickets remaining.
Input requested tickets: 2
Thank you for your purchase. There are no tickets remaining.
You have had 4 buyers.
Transcribed Image Text:Your test code for this project will be in Program.java and will implement a simple user interface. Here is a sample run: Input the number of tickets you want to sell: 8 Input requested tickets: 1 Thank you for your purchase. There are 7 tickets remaining. Input requested tickets: 2 Thank you for your purchase. There are 5 tickets remaining. Input requested tickets: 6 Too many tickets requested, please try again. Input requested tickets: 9 Too many tickets requested, please try again. Input requested tickets: 3 Thank you for your purchase. There are 2 tickets remaining. Input requested tickets: 2 Thank you for your purchase. There are no tickets remaining. You have had 4 buyers.
This problem is inspired by the book's Problem P6.10 on page 304.
You are to write an application to pre-sell a limited number of movie tickets. The simple user interface will be contained in Program.java and the
object to implement this is referred to as TicketSeller and consists of only the following public methods:
public TicketSeller (int initialTicketAllotment) - Specify the number of tickets you want to sell.
public int requestTickets (int ticketRequest) - Allows buyer to request a specific number of tickets. Returns the number of tickets remaining if the
number requested is within the max allowable and does not exceed the number remaining. Returns
TicketSeller. TOO_MANY_TICKETS_REQUESTED if there are fewer remaining tickets than requested or the number of requested exceeds
TicketSeller. MAXIMUM_TICKETS_ALLOWED. Since the normal result is going to be zero or more tickets (up to the maximum allowed), use a
negative number to represent the constant value for too many tickets requested. Note that one of these constants is private and one is public. Which
one needs to be exposed to the user?
public int getNumberofBuyers () - Tracks number of ticket buyers. You only count buyers who have fulfilled a request. Errors don't count.
Your Program.java should contain code to test your TicketSeller object.
Transcribed Image Text:This problem is inspired by the book's Problem P6.10 on page 304. You are to write an application to pre-sell a limited number of movie tickets. The simple user interface will be contained in Program.java and the object to implement this is referred to as TicketSeller and consists of only the following public methods: public TicketSeller (int initialTicketAllotment) - Specify the number of tickets you want to sell. public int requestTickets (int ticketRequest) - Allows buyer to request a specific number of tickets. Returns the number of tickets remaining if the number requested is within the max allowable and does not exceed the number remaining. Returns TicketSeller. TOO_MANY_TICKETS_REQUESTED if there are fewer remaining tickets than requested or the number of requested exceeds TicketSeller. MAXIMUM_TICKETS_ALLOWED. Since the normal result is going to be zero or more tickets (up to the maximum allowed), use a negative number to represent the constant value for too many tickets requested. Note that one of these constants is private and one is public. Which one needs to be exposed to the user? public int getNumberofBuyers () - Tracks number of ticket buyers. You only count buyers who have fulfilled a request. Errors don't count. Your Program.java should contain code to test your TicketSeller object.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 5 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education