Question: Purpose: To use software development principles of abstraction in problem solving and structured problem solving techniques to create an application that uses counter-controlled repetition to

Purpose: To use software development principles of abstraction in problem solving and structured problem solving techniques to create an application that uses counter-controlled repetition to perform calculations based on a users input.

Details:

Create a class called BarChart that displays a series of asterisks (*) for a specific number. The classs constructor should have one integer parameter that represents the number of asterisks to display. The class should also have a method called displayBar that displays the series of asterisks.

Create a second class called BarChartTester that contains the main method. The method should ask the user for a number and use the BarChart class to create a BarChart object that displays the appropriate number of asterisks. This should be repeated five times.

The BarChartTester class should produce the following example input/output:

Enter a number: 5

*****

Enter a number: 15

***************

Enter a number: 7

*******

Enter a number: 3

***

Enter a number: 23

***********************

please include Psuedocode

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!