|
What is 212o fahrenheit in celsius? A good answer might be:Boiling temperature is 212o fahrenheit; 100o in celsius. |
Design of an ApplicationWe will design and implement a GUI application that converts a temperature expressed in fahrenheit into celsius. Two things have to be designed:
This is algebra, not Java. Although the algebra looks a lot like Java some more design decisions are needed.celsius = (fahrenheit - 32) * 5/9 |
QUESTION 2:Should the Java program use integer variables or floating point variables to implement the formula? Click Here after you have answered the question |