Horje
degrees f to c 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);
    }
}
degrees f to c
c/5 = (f-32/9)




C

Related
how to print a string in c Code Example how to print a string in c Code Example
VLOOKUP  CHECK #N/A Code Example VLOOKUP CHECK #N/A Code Example
mpi example Code Example mpi example Code Example
bash check if inside lxc Code Example bash check if inside lxc Code Example
c code library Code Example c code library Code Example

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