Write a program to convert Celsius to farenheit temperature using java
Answers
Answered by
0
Answer:
see the attachment
Explanation:
please mark as brainliest and follow me!
Attachments:
Answered by
0
- Explanation:
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