Question: 1. Write a Java program using if/else to find out and print out the maximum number out of three numbers given by user. Then also

1. Write a Java program using if/else to find out and print out the maximum number out of three numbers given by user. Then also print out Even if the maximum number is even, otherwise print out Odd.

2. Write a program to print out the Fahrenheit-Celsius conversion table of range from 00 F to 100 F using while loop, using the C = (5/9) (F 32) formula. Here values of C should be calculated based on the values of F, which are incremented from 0 to 10 by the loop. Since you are using loop, in your whole program you are not allowed to write more than one, System.out.println(F degree Fahrenheit equal to C degree Celsius); Example Output: 0 degree Fahrenheit equal to C degree Celsius 1 degree Fahrenheit equal to C degree Celsius - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - 10 degree Fahrenheit equal to C degree Celsius

3. Write a Java program using nested for loop to print out following:

**********

*********

********

*******

******

*****

****

***

**

*

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!