Convert Celsius to Fahrenheit

This commit is contained in:
Abhisek Pattnaik
2015-12-25 02:57:04 +05:30
committed by SaintPeter
parent 57192b4769
commit acd3c99150

View File

@@ -778,7 +778,7 @@
"description": [
"To test your learning you will create a solution \"from scratch\". Place your code between the indicated lines and it will be tested against multiple test cases.",
"The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.",
"You are given a variable <code>Tc</code> representing a temperature in Celsius. Create a variable <code>Tf</code> and apply the algorithm to assign it the corrasponding temperature in Fahrenheit."
"You are given a variable <code>Tc</code> representing a temperature in Celsius. Create a variable <code>Tf</code> and apply the algorithm to assign it the corresponding temperature in Fahrenheit."
],
"releasedOn": "11/27/2015",
"tests": [
@@ -792,7 +792,7 @@
"challengeSeed": [
"function convert(Tc) {",
" // Only change code below this line",
"",
" ",
"",
" // Only change code above this line",
" if(typeof Tf !== 'undefined') {",