“Celsjusz do Formuły Fahrenheita” Kod odpowiedzi

Fahrenheit do Celsjusza formuły

cels = (fahr - 32.0) * 5.0/9.0; //Fahr to cels
fahr = (cels * 9.0/5.0) + 32.0; //Cels to fahr  
Silent Knight

nawróć Fahrenheita na Celsjusz

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);
    }
}
C Will

Celsjusz do Formuły Fahrenheita

float cel;
printf("Enter celsius value: ");
scanf("%f", &cel);

printf("Fahrenhit value is: %f", cel * (9 / 5) + 32);
Friendly Ferret

Odpowiedzi podobne do “Celsjusz do Formuły Fahrenheita”

Pytania podobne do “Celsjusz do Formuły Fahrenheita”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu