# PLUS MINUS MAL UND DURCH! Der einfachste Taschenrechner der Welt. ```htmlmixed=! <html> <head> <title>Ein einfacher Taschenrechner</title> </head> <body> <h1> Einfache Mathematik lösen </h1> <form action> <label for="Zahl1">Erste Zahl: <input type="number" id="Zahl1" name="Zahl1"> </label> <br><br> <label for="Zahl2">Zweite Zahl: <input type="number" id="Zahl2" name="Zahl2"> </label> <br><br> <input type="submit" name="Operator" value="Addieren"> <input type="submit" name="Operator" value="Subtrahieren"> <input type="submit" name="Operator" value="Multiplizieren"> <input type="submit" name="Operator" value="Dividieren"> <br><br> </form> <cfif IsDefined("Zahl1")> <cfif Zahl1 != "" and Zahl2 != ""> <cfif Operator=="Addieren"> <cfoutput>#Zahl1+Zahl2#</cfoutput> <cfelseif Operator=="Subtrahieren"> <cfoutput>#Zahl1-Zahl2#</cfoutput> <cfelseif Operator=="Multiplizieren"> <cfoutput>#Zahl1*Zahl2#</cfoutput> <cfelseif Operator=="Dividieren"> <cfoutput>#Zahl1/Zahl2#</cfoutput> </cfif> <cfelse> <cfoutput><h2>Ohne Zahlen kann ich nicht rechnen.</h2></cfoutput> </cfif> </cfif> </body> </html> ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up