Datasets:

ArXiv:
License:
File size: 459 Bytes
c574d3a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Scanner;

public class CelsiusToFahrenheit{
    public static void main(String args[]){
        Scanner input = new Scanner(System.in);
        double celsius;
        double fahrenheit;

        System.out.print("Enter Temperature in Celsius : ");
        celsius = input.nextDouble();

        // Fahrenheit formula
        fahrenheit = (celsius * 1.8) + 32;

        System.out.println("Temperature in Fahrenheit : " + fahrenheit);
    }
}