Computer Science, asked by diljotboparai2007, 10 months ago

Write a program in BlueJ to convert temperature from Celsius to Fahrenheit, assume that the input temperature is 75 degree Celsius

Answers

Answered by Atiksh
0

Hello.. take care

C = 9/5 *C + 32

Answered by CopyThat
1

Answer:

JAVA :-

Explanation:

import java.util.*;

class Brainly

{

static void main()

{

Scanner sc=new Scanner(System.in);

float f,c;

System.out.println( “Enter temperature in farenheit:”);

f=sc.nextFloat();

c=((f-32)*5)/9;

System.out.println(“Temperature in celcius=”+c);

}

}

Similar questions