Skip to main content

Posts

Showing posts with the label cs101 Assignment 2016 solution

cs101 Assignment 2016 solution

For More Help Ya guides  Visit our Fb Page https://www.facebook.com/vukhi01/ <html> <head> <title></title> <script> var firstvalue,secondvalue,operator,sum,total; function FirstValue() { if(document.getElementById("inputbox").value=="") { window.alert("Enter A correct number!"); } else {  firstvalue=parseInt(document.getElementById("inputbox").value); operator=document.getElementById("plus").value; sum=firstvalue + operator; document.getElementById("info").innerHTML=sum; document.getElementById("inputbox").value=""; document.getElementById("plus").disabled = true; document.getElementById("equal").disabled = false; document.getElementById("inputbox").autofocus = true; } } function SecondValue() { if(document.getElementById("inputbox").value=="") { window.alert("Enter A correct number!...