“Celsius para Fahrenheit fórmula” Respostas de código

Fahrenheit para Fórmula Celsius

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

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

Celsius para Fahrenheit fórmula

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

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

Respostas semelhantes a “Celsius para Fahrenheit fórmula”

Perguntas semelhantes a “Celsius para Fahrenheit fórmula”

Procure respostas de código populares por idioma

Procurar outros idiomas de código