※J.Y Chen 的個人部落格 ※

Just Follow Our Heart And We will shine!

104 瀏覽人次

【程式語言】JAVA的第三堂課 |華氏溫度 轉 攝氏溫度 (Fahrenheit to Celsius)

Published: in JAVA by .

import java.util.*;

public class hw2_1 {
    public static void main(String[] args) {
        System.out.print("Please input Fahrenheit:");
        Scanner input = new Scanner(System.in);
        double temp = input.nextDouble();
        System.out.printf("Celsius is %.1f C" ,(temp*5/9) - 32);
    }
}
©2019 - 2024 Henry Chen