Pseudocode 5

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Pseudocode05

Import Java Scanner


Create class BarChart

Create a private integer parameter that represents the number of asterisks to


display

Create a method called displayBar that display the series of asteriks

Use for statement


for(int count= 0 ; count <= asteriks ; count++)

print(*);

Create class BarChartTester


Create Scanner
for(int x =1 ; x<=5; x++)
Loop five times asking to input a number and creating a BarChart
Print (Enter a number)
DisplayBar

You might also like