Now use if statements, and the comparison operators you just learned, to control when each outline is drawn.
Try assigning theNumber different numbers, to make sure your program works. Make sure that:
-the outline around ''It's positive'' is only drawn when theNumber is positive.
-the outline around ''It's negative'' is only drawn when theNumber is negative.
-the outline around ''It's zero'' is only drawn when theNumber is zero.
See if your program works correctly when you assign each of these numbers to theNumber:
- positive numbers: 1, 17, 0.2
- negative numbers: -1, -12, -0.35
- zero: 0