Answered You can hire a professional tutor to get the answer.
Write a program that asks for length L and the width W of a rectangle, then compute perimeter and area of the rectangle. Make sure that L and W are...
Q7: Write a program that asks for length L and the width W of a rectangle, then compute perimeter and area of the rectangle. Make sure that L and W are positive numbers. perimeter = (length + width) * 2area = length * width With explanations PlZ