“diferentes fórmulas para converter Celsius em Fahrenheit” 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

diferentes fórmulas para converter Celsius em Fahrenheit

function fahrenheitToCelsius(fahrenheit) {
  return (((fahrenheit - 32) * 5) / 9).toFixed(1);
} // Using toFixed returns a decimal value

function celsiusToFahrenheit(celsius) {
  return ((9 * celsius) / 5 + 32).toFixed(1);
} // Better to multiply in this order for celsius
lundeen-bryan

Respostas semelhantes a “diferentes fórmulas para converter Celsius em Fahrenheit”

Perguntas semelhantes a “diferentes fórmulas para converter Celsius em Fahrenheit”

Mais respostas relacionadas para “diferentes fórmulas para converter Celsius em Fahrenheit” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código