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

Just Follow Our Heart And We will shine!

91 瀏覽人次

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

Published: in JAVA by .

import java.util.*;

public class hw2 {
    public static void main(String[] args) {
        System.out.print("Please input Celsius:");
        Scanner input = new Scanner(System.in);
        double temp = input.nextDouble();
        System.out.println("Fahrenheit is " + ((temp * 1.8) + 32) + "F");
    }
}
©2019 - 2024 Henry Chen