You have been hired as a java developer to create a java application that prompts the user for the temperature in Fahrenheit, and covert that to Celsius
Submit your detailed algorithm and source code for each application below! See examples of aglorithmn designs on page 88 and 92
Print/display the converted temperature in Celsius
Celsius = (Fahrenheit -32) *(5.0/9.0)
Example below:
Please enter the temperature in Fahrenheit: * This is an example what the user enters** => 36
Your temperature in Celsius is : => 2.222
AND
McDonalds Restaurant LLC has hired you as their java developer to create a java based burger application for their restaurants located in the Maryland area.
The restaurant charges $1.69 for burgers, $1.09 for fries, and $0.99 for sodas.
a) Create an Order application that prompts the customer for the number of burgers, fries, and sodas and then displays the total, the TAX (6.5%), and the final cost.
The application output should look similar to the below:
Welcome to McDonalds (Or your favorite restaurant) !
Please enter a name for the order!* This is an example what the user enters** => John
What area are you located?! * This is an example what the user enters** => Bowie
Welcome John to the McDonalds (Or your favorite restaurant) located in Bowie!
Please enter the number of burgers: * This is an example what the user enters** => 2
Please enter the number of fries: * This is an example what the user enters** => 5
Please enter the number of sodas: * This is an example what the user enters** => 5
Your total John before tax is : 13.78
Tax: .90
Your total John after tax is: $14.88
Thank you for using our service!