“Formula yang berbeda untuk mengubah Celcius menjadi Fahrenheit” Kode Jawaban

Fahrenheit ke Formula Celcius

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

Konversi Fahrenheit menjadi Celcius

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

Formula yang berbeda untuk mengubah Celcius menjadi 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

Jawaban yang mirip dengan “Formula yang berbeda untuk mengubah Celcius menjadi Fahrenheit”

Pertanyaan yang mirip dengan “Formula yang berbeda untuk mengubah Celcius menjadi Fahrenheit”

Lebih banyak jawaban terkait untuk “Formula yang berbeda untuk mengubah Celcius menjadi Fahrenheit” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya