“Celsius zur Fahrenheit Formel” Code-Antworten

Fahrenheit zur Celsius -Formel

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

Fahrenheit in Celsius konvertieren

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

Celsius zur Fahrenheit Formel

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

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

Ähnliche Antworten wie “Celsius zur Fahrenheit Formel”

Fragen ähnlich wie “Celsius zur Fahrenheit Formel”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen