On Fri, Oct 10, 2014 at 8:46 AM, wrote:
> This is the prompt: Write an algorithm / pseudocode that:
> • Reads in a two integers; the width and length of a room.
[code cut]
Can you talk a little bit about what problem you're having, if
anything? Or are you asking for a code review? It's unclea
Wrote in message:
>
>
(Please use text mail to post here)
roomWidth = 100.0. #BUGBUG
roomLength = 90.0
while roomWidth < 100 or roomWidth > 1000:
roomWidth = float(input("Please enter a room width between 100
and 1000: "))
if roomWidth >= 100 or roomWidth <= 1000:
print(
This is the prompt: Write an algorithm / pseudocode that:
• Reads in a two integers; the width and length of a room.
i. The valid range for the width (x-axis) of the room is between 100 and 1000
pixels.
ii. The valid range for the length (y-axis) of the room is between 100 and 900
pixels.
• V