Computer Science, asked by sairindhri38, 6 months ago

Write a program to convert Celsius to farenheit temperature using java​

Answers

Answered by Anonymous
0

Answer:

see the attachment

Explanation:

please mark as brainliest and follow me!

Attachments:
Answered by pshiv02745
0
  1. 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