
JavaScript 基本预算综合练习
function convert(celsius) {
// Only change code below this line
var fahrenheit=celsius*9/5+32;
// Only change code above this line
return fahrenheit;
}
// Change the inputs below to test your code
convert(30);
function convert(celsius) {
// Only change code below this line
var fahrenheit=celsius*9/5+32;
// Only change code above this line
return fahrenheit;
}
// Change the inputs below to test your code
convert(30);
关闭