Skip to content

编程实现温度转换,已知温度转换的关系式是:华氏度=32+摄氏度×1.8,现在要求输入摄氏度,输出对应的华氏度,小数保留两位

Posted on:2023年1月8日 at 20:48
function convertTemperature(centigrade) {
  if (typeof centigrade !== "number") {
    throw new Error("Wrong parameter type!");
  }

  return (32 + centigrade * 1.8).toFixed(2);
}
原文转自:https://fe.ecool.fun/topic/481c1ab4-ec43-4c80-9d04-e48930d67105