A Pen by Aryan Chandna on CodePen.
Created
March 18, 2020 20:39
-
-
Save winexe0/3f79716a0925911bd4e34fba6f5106b0 to your computer and use it in GitHub Desktop.
Your math solving webpage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <head id=math>"Your math solving webpage" </head> | |
| <button onclick="get()">Get the helper</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function get () { | |
| var num1 prompt("What is your first number"); | |
| var num2 prompt("What is your second number") ; | |
| var symol prompt("Whould you like to multipy, add, divide, or subtract. Remember to tell to by + - * /"); | |
| document.write(num1 symol num2); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #math{ | |
| font-family: "Arial"; | |
| font-size:60pt; | |
| text-align: center; | |
| color: black | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment