gpt4 book ai didi

javascript - 意外的标记 }。摄氏度到华氏度转换器

转载 作者:行者123 更新时间:2023-11-30 18:04:34 24 4
gpt4 key购买 nike

<分区>

在开始提问之前我只想说一件事。我是一个对编程感兴趣的年轻人,所以如果答案 super 简单,请不要对我生气。附言。抱歉我的英语不好:P

事情是这样的。我正在尝试使用 JavaScript 在华氏温度和摄氏温度之间进行转换。我根本无法理解我在此处输入代码做错了什么。我的代码;

//Line 2 asks the user what he/she want to convert. Either celcius to farenheit, or farenheit to celcius
var userChoice = prompt("For converting farenheit to celcius, type FtoC. For converting celcius to farenheit, type CtoF");


//Defines a function to calculate the math
var celciustofarenheit = function (userChoice) {
if (userChoice === "CtoF")
var CtoFchoice = prompt("Whats the degree you want to convert?")
var result1 = CtoFchoice * 9 / 5 + 32;
console.log(CtoFchoice, "is", result1, "in farenheit!")
}
if (userChoice === "FtoC") {
var FtoCchoice = prompt("Whats the number you want to convert?")
var result2 = FtoCchoice - 32 * 5 / 9;
console.log(FtoCchoice, "is", result2, "in celcius!")
}
};

请告诉我我做错了什么,而不是只粘贴正确的代码! :)

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com