codecamp

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);

JavaScript /=赋值操作
JavaScript 声明字符串变量
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定