Computer Science, asked by sukh1121, 5 months ago

write a program to input the temperature in centigrade and convert it into Fahrenheit in Java​

Answers

Answered by Anonymous
3

Answer:

JAVA

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