write a flowchart to find area of rectangle 3m
Answers
Answered by
0
program SquarePerimeter
real SideLength, Perimeter
print *, "Input the length of a side of the square."
read *, SideLength
Perimeter = 4 * SideLength
print *, "The perimeter of the square is", Perimeter, "(same units as the length of the square's sides)."
end program SquarePerimeter
You can copy/paste thprogram SquarePerimeter
real SideLength, Perimeter
print *, "Input the length of a side of the square."
read *, SideLength
Perimeter = 4 * SideLength
print *, "The perimeter of the square is", Perimeter, "(same units as the length of the square's sides)."
end program SquarePerimeter
You can copy/paste the program here:e program here:
Similar questions