write a program to find temperature in Fahrenheit when temperature is given in Celsius(formula hint F=((9*c)/5)+32)
Answers
Answered by
0
Answer:
there more just u download Qanda app it give u answer
Answered by
4
Answer:
Here's your answer in Java :
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter Temperature in Celsius");
double c = sc.nextDouble();
double f = ((9*c)/5) + 32;
System.out.println("The Temperature in Fahrenheit = "+f);
}
}
Similar questions
English,
4 months ago
Social Sciences,
4 months ago
Social Sciences,
4 months ago
English,
9 months ago
English,
9 months ago
Math,
1 year ago
Math,
1 year ago
Art,
1 year ago