in Education by
Write a JAVA program to store the temperature in Celsius and convert it into Fahrenheit using the following formula. Fahrenheit= (Celsius*9/5) +32 DO NOT USE ANY INPUT METHOD Select the correct answer from above options

1 Answer

0 votes
by
 
Best answer
Answer JAVA 1 public class temperature. 2 { 3 public static void main (String args[]) 4 { float Fahrenheit, Celsius; 5 Celsius= 13; 6 Fahrenheit =((Celsius*9)/5)+32; 7 System.out.println(“Temperature in Fahrenheit is: “+Fahrenheit); 8 }}

Related questions

0 votes
    5. Write a program to read and store the following data in two different arrays. Using Binary Search Method search for ... 85, 72, 89 Select the correct answer from above options...
asked Dec 15, 2021 in Education by JackTerrance
0 votes
    Write a JAVA program to store the marks of any 5 subjects in different variables. Calculate total and average. ... ANY INPUT METHOD Select the correct answer from above options...
asked Dec 22, 2021 in Education by JackTerrance
0 votes
    Write a JAVA program to store the marks of any 5 subjects in different variables. Calculate total and average. ... total and average. Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    Write a program to convert a decimal number into binary number using function Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    int f=100, c; c = (f – 32)/9 * 5; System.out.println(c); Select the correct answer from above options...
asked Dec 27, 2021 in Education by JackTerrance
0 votes
    int f=100, c; c = (f – 32)/9 * 5; System.out.println(c); Select the correct answer from above options...
asked Dec 26, 2021 in Education by JackTerrance
0 votes
    int f=100, C; c= (f – 32)/9 * 5; System.out.println(c); Select the correct answer from above options...
asked Dec 25, 2021 in Education by JackTerrance
0 votes
    write a program to create a series object that store the table of number 5 Select the correct answer from above options...
asked Dec 13, 2021 in Education by JackTerrance
0 votes
    write the steps to search the 13 from the following element using binary search 2,4,5,8,9,11,12,13,15,18,21,22,25,29,30 Select the correct answer from above options...
asked Dec 13, 2021 in Education by JackTerrance
0 votes
    Write a JAVA program to find the area and perimeter of a square and rectangle. Store side in s , length as ... USE ANY INPUT METHOD Select the correct answer from above options...
asked Dec 22, 2021 in Education by JackTerrance
0 votes
    Write a JAVA program to find the area and perimeter of a square and rectangle. Store side in s , length ... results in separate lines. Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    9. Cancel button (x on formula bar) can be used to undo a cell entry after it has been completed (a) True (b) ... ) Alt+P (d) Ctrl+P Select the correct answer from above options...
asked Dec 13, 2021 in Education by JackTerrance
0 votes
    write a program to store 1st 25 prime number in an erray and display it Select the correct answer from above options...
asked Dec 6, 2021 in Education by JackTerrance
0 votes
    write a program to store 1st 25 prime number in an erray and display it Select the correct answer from above options...
asked Dec 5, 2021 in Education by JackTerrance
...