온도 단위 변환하기
https://leetcode.com/problems/convert-the-temperature/
섭씨 온도를 나타내는 소수점 둘째 자리 섭씨로 반올림된 음수가 아닌 부동 소수점 숫자가 제공됩니다.
섭씨를 켈빈과 화씨로 변환하고 배열 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;
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
2160. Minimum Sum of Four Digit Number After Splitting Digits (0) | 2023.03.31 |
---|---|
2413. Smallest Even Multiple (0) | 2023.03.31 |
1920. Build Array from Permutation (0) | 2023.03.30 |
1929. Concatenation of Array (0) | 2023.03.30 |
2319. Check if Matrix Is X-Matrix (0) | 2023.03.07 |