화씨로 섭씨 변환
9/5
에 32
로 표시된 온도다.celsius
를 드리겠습니다.정의된 변수fahrenheit
를 사용하고 섭씨 온도에 해당하는 화씨 온도를 지정합니다.상술한 알고리즘을 사용하여 섭씨 온도를 화씨 온도로 바꾸는 것을 돕다.function convertToF(celsius) {
let fahrenheit;
return fahrenheit;
}
convertToF(30);
function convertToF(celsius) {
let fahrenheit = celsius * (9 / 5) + 32;
return fahrenheit;
}
convertToF(30);
convertToF(30) should return a value of 86
Reference
이 문제에 관하여(화씨로 섭씨 변환), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rthefounding/converting-celsius-to-fahrenheit-coh텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)