7. 8. Write a BASIC program to READ temperature in centigrade and convert it into F ahrenheit. [F=(C/5*9)+32] 8. step by step ?????
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);
}}
Explanation:
try by changing values according to you
Similar questions