Homework 9
CS1210 Computer Science 1 - Fall 2021
Due Monday, Nov. 29, by 8:00pm
6 points

1. Implement a tkinter-based GUI program for a simple math game. Your program should present randomly generated simple math problems involving addition, subtraction, multiplication, and division of whole numbers.

For addition, subtraction, division, both operands should be non-negative integers should be less than 1000. For multiplication, both should be less than 100. All problems should have positive integer answers. Do not generate problems having negative, floating point, or undefined results. Thus, for example, 4 - 6, 23 / 2, and 1 / 0 are all disallowed.

You may design your user-interface however you'd like but it must:


Submit to ICON exactly one Python file.