Question
Write Java program to design a simple temperature and length converter application. (Need to java files ConvertFrame.java & ConvertTest.java) The requirements are: a. Create a
Write Java program to design a simple temperature and length converter application. (Need to java files ConvertFrame.java & ConvertTest.java)
The requirements are: a. Create a Flow Layout.
b. Display a text (Converter) on the title bar.
c. Add two labels as shown in the figure below.
d. Add two text fields with a size of 5 as shown in the figure below.
e. Add two command buttons as shown in the figure below.
f. A user can press enter in a text field or click on a button to convert temperature from Fahrenheit to Celsius or length from Inch to Centimeter. i. If a user presses enter in a text field, convert the input and display it. ii. If a user prefers to click on convert button, convert the input and display it.
g. Display the conversion results as integers.
h. Set the width of the frame as 550 and height as 180.
i. Hint: You can use getText() method to get the input from a text field, and you can use setText() method to display the output in a label.
Sample output:
Converter Enter Fahrenheit temperature:[ Convert Fahrenheit to Celsius is: Enter Inch length: Convert Inch to CentiMeter is: Converter Enter Fahrenheit temperature: 45 Convert Temperature in Celsius is: Enter Inch length: 5 Convert Length in Centimeter is: 12Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started