Description
Create a ”calculator” GUI which will allow the user to
input two integers and preform two operations on them,
showing the result in the GUI. One operation should
show the value of the first number modulo the second
number. The other operation should show the value of
the first number to the power of the second number.
Hints: The easiest approach will probably use two
Entry objects for the user to type in the integers and
two buttons linked to the two operations.
1