Advertisement
GamerBhai02

Program 1 Simple Calculator

Nov 8th, 2024 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.49 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Simple Calculator</title>
  5. </head>
  6. <body>
  7.     <div>
  8.         <h2>Simple Calculator</h2>
  9.         <form name="form1">
  10.             <input type="text" name="answer"><br><br>
  11.             <input type="button" value="1" onclick="form1.answer.value += '1'">
  12.             <input type="button" value="2" onclick="form1.answer.value += '2'">
  13.             <input type="button" value="3" onclick="form1.answer.value += '3'">
  14.             <input type="button" value="*" onclick="form1.answer.value += '*'">
  15.             <input type="button" value="AC" onclick="form1.answer.value = ''" id="clear">
  16.             <br><br>
  17.             <input type="button" value="4" onclick="form1.answer.value += '4'">
  18.             <input type="button" value="5" onclick="form1.answer.value += '5'">
  19.             <input type="button" value="6" onclick="form1.answer.value += '6'">
  20.             <input type="button" value="/" onclick="form1.answer.value += '/'">
  21.             <br><br>
  22.             <input type="button" value="7" onclick="form1.answer.value += '7'">
  23.             <input type="button" value="8" onclick="form1.answer.value += '8'">
  24.             <input type="button" value="9" onclick="form1.answer.value += '9'">
  25.             <input type="button" value="-" onclick="form1.answer.value += '-'">
  26.             <br><br>
  27.             <input type="button" value="+" onclick="form1.answer.value += '+'">
  28.             <input type="button" value="0" onclick="form1.answer.value += '0'">
  29.             <input type="button" value="." onclick="form1.answer.value += '.'">
  30.             <input type="button" value="=" onclick="form1.answer.value = eval(form1.answer.value)"><br>
  31.         </form>
  32.     </div>
  33. </body>
  34. </html>
Tags: calculator
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement