07-08-2017, 07:10 PM
CS101 - Introduction to Computing
Assignment 3 - Spring 2017
Problem Statement: Create a Temperature Converter webpage with only HTML and JavaScript. It must convert user entered value from Fahrenheit to Celsius and vice versa. Output must be an Integer and you must not use Math.round() function. There should not be a button, but a statement that shows whether the user has selected Fahrenheit or Celsius for conversion from the drop down list.
Screenshots are given in the assignment file.
Solution:
Copy the following code and paste it in the notepad in your computer, only use notpad and not wordpad or Microsoft Word. Click on File option and then Save the file with extension .html e.g. yourname.html
Write your Student ID in the title tag where suggested.
Remember to save the file with .html extension.
Assignment 3 - Spring 2017
Problem Statement: Create a Temperature Converter webpage with only HTML and JavaScript. It must convert user entered value from Fahrenheit to Celsius and vice versa. Output must be an Integer and you must not use Math.round() function. There should not be a button, but a statement that shows whether the user has selected Fahrenheit or Celsius for conversion from the drop down list.
Screenshots are given in the assignment file.
Solution:
Copy the following code and paste it in the notepad in your computer, only use notpad and not wordpad or Microsoft Word. Click on File option and then Save the file with extension .html e.g. yourname.html
Code:
<html>
<head>
<title>Student Id: "Write your student ID here"</title>
</head>
<body>
<h1>Convert temprature</h1>
<table>
<tr>
<td>Enter a value:</td>
<td><input type="text" onChange="myFunction()" name="uvalue" id="uvalue"></td>
<td>
<select name="utype" id="utype" onChange="myFunction()">
<option value="b">Fahrenheit (F°)</option>
<option value="a">Celsius (C°)</option>
</select>
</td>
</tr>
<tr>
<td>Answer:</td>
<td><input type="text" name="answer" id="answer"></td>
</tr>
<tr>
<td></td>
<td colspan="2"><p id="bottomline"></p></td>
<script>
function myFunction() {
var w;
var x = document.getElementById('uvalue').value;
var y = document.getElementById('utype').value;
function RoundNum(number){
var a = number % 1;
return number-a+(a/1+1.5>>1)*1
}
if(y == "a"){
document.getElementById('bottomline').innerHTML = "You Selected: Celsius to Fahrenheit";
w = x * 9 / 5 + 32;
document.getElementById('answer').value = RoundNum(w);
}
if(y == "b"){
document.getElementById('bottomline').innerHTML = "You Selected: Fahrenheit to Celsius";
w = (x -32) * 5 / 9;
document.getElementById('answer').value = RoundNum(w);
}
}
</script>
</tr>
</table>
</body>
</html>
Write your Student ID in the title tag where suggested.
Remember to save the file with .html extension.