Computer Science, asked by harsh601144, 4 months ago

.Write a program in JAVA to find the temperature in Fahrenheit when temperature is given in Celsius​

Answers

Answered by mani0611
0

Answer:

public class temperature

{

public static void main (String args[])

{ float Fahrenheit, Celsius;

Celsius= 13;

Fahrenheit =((Celsius*9)/5)+32;

System.out.println("Temperature in Fahrenheit is: "+Fahrenheit);

}}

Similar questions