so I'm trying to create a code that follows these guidelines
// create code so that 4 rectangular prisms are created.
// the formula for the length of the first prism = 3(x+4)/5 + 2
// the formula for the width of the first prism = 4 + 5 * x * x
// the formula for the height of the first prism = 3x / 2
// Ask the user for an integer input for x
// For the subsequent 3 prisms, increase x by 1.
// output all appropriate information.
and i get stuck at the part where I have to increase x by 1..
do i insert a nested loop so that after the second time the program asks the user for length/width/height it will automatically add one to their number?
and then when i ask for the dimensions again the 3rd time, x will increase +2?