| Problem | Code |
| Write a program that displays the sum and difference of two integers input by the user. Use pop-up
windows to get the values. |
Arithmetic1 |
| Write a program that displays the product and ration of two integers input by the user. Use pop-up
windows to get the values. |
Arithmetic2 |
Write a program that coverts a temperature in Fahrenheit to Celsius.
Input will be from a dialog box. Here is the formula for the conversion
C = 5.0/9.0 * (F - 32)
|
FahrenheitToCelsius |
| Write a program that finds the average of three integers. The Scanner class will be used to get the input from the user.
The average will be rounded to two decimal places. |
AverageOfThreeIntegers |
Basically the same as AverageOfThreeIntegers except a pop-up window is used to get the values and the
short cut operator += is used.
|
AverageOfThreeIntegers |