Algorithm/LeetCode

2469. Convert the Temperature

 

온도 단위 변환하기

 

https://leetcode.com/problems/convert-the-temperature/

 

Convert the Temperature - LeetCode

Can you solve this real interview question? Convert the Temperature - You are given a non-negative floating point number rounded to two decimal places celsius, that denotes the temperature in Celsius. You should convert Celsius into Kelvin and Fahrenheit a

leetcode.com

 

섭씨 온도를 나타내는 소수점 둘째 자리 섭씨로 반올림된 음수가 아닌 부동 소수점 숫자가 제공됩니다.
섭씨를 켈빈과 화씨로 변환하고 배열 ans = [켈빈, 화씨]로 반환해야 합니다.
배열 ans를 반환합니다. 실제 답변의 10-5 이내 답변이 허용됩니다.
참고: 켈빈 = 섭씨 + 273.15 화씨 = 섭씨 * 1.80 + 32.00

 

주어진 변환식 대로 값을 대입하면 답이 나온다.

class Solution {
    public double[] convertTemperature(double celsius) {
        
        double kelvin = celsius + 273.15;
        double fahrenheight = celsius * 1.80 + 32.00;
        double[] ans = {kelvin, fahrenheight};
        return ans;
    }
}