Horje
converting temperature from fahrenheit to celsius Code Example
convert fahrenheit to celsius
import java.util.Scanner;

public class Main {

    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int far = sc.nextInt();
        int cel = (far - 32) * 5/9;
        System.out.printf("%d Fahrenheit is %d Celsius", far, cel);
    }
}
converting temperature from fahrenheit to celsius
محمد حميد




Java

Related
how to change the value of an arraylist in java Code Example how to change the value of an arraylist in java Code Example
comment calculer le temps d'execution d'un programme en java Code Example comment calculer le temps d'execution d'un programme en java Code Example
añadir objetos de diferentes clases en una misma lista Code Example añadir objetos de diferentes clases en una misma lista Code Example
maven paper Code Example maven paper Code Example
change activity main drawer items text color android Code Example change activity main drawer items text color android Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8