.Write a program in JAVA to find the temperature in Fahrenheit when temperature is given in Celsius
Answers
Answered by
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