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
Step: 1
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