Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please submit your java file to the question below: You operate several hot dog stands distributed throughout town. 1. Define a class named HotDogStand that
Please submit your java file to the question below: You operate several hot dog stands distributed throughout town. 1. Define a class named HotDogStand that has an instance variable for the hot dog stand's ID (int) and an instance variable for how many hot dogs he stand has sold that day. 2. Create a constructor that allows a user of the class to initialize both values. 3. Also create a method named justSold that increments by one the number of hot dogs the stand has sold. The idea is that this method will be invoked each time the stand sells a hot dog so that you can track the total number of hot dogs sold bythe stand. 4. Add another method that returns the number of hot dogs sold. 5. Finally, add a static variable that tracks the total number of hot dogs sold by all hot dog stands and a static method that returns the value in this variable. 6. Write a main method to test your class with at least three hot dog stands that each sell a variety of hot dogs
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started