This program will ask the user for how much weight they want on their barbell. You will need to ask the user for the amount of weight that they want then print out what their answer was. You must then calculate the diameter of the weights that you need. The radius of each wieght should be the number of pounds for each wieght divided by 3.0. Remember there are two weights, one on each end. You should print out the calculated radius.
You should then display a 2D picture of your barbell wieghts of the correct diameter.
Steps
Print the following message on the screen
How much weight do you want?
The user will then type a number that you will read and store in a variable.
Print the following message on the screen
You have asked for PPPP pounds.
Your weights will have radius RRRR.
Your console window should now look like this:
Create a new 2D window
Display the barbell in the window.
It should like approximately like the picture below. The colors you can choose for yourself. I have included axes because it makes it easier to choose sizes but you can leave them out if you want.
Hints
The documentation for drawing 2D images is found here.