Как сделать калькулятор? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Как сделать калькулятор?

Help me make the calculator the easiest... I don't really know how to do that.. give me the layout please...

11th Feb 2019, 5:22 AM
Константин Пидорин
Константин Пидорин - avatar
4 Answers
+ 9
<!-- MADE BY VEDANG --> <!DOCTYPE html> <html> <head> <title>Calculator</title> <link href='https://fonts.googleapis.com/css?family=VT323|Cute Font' rel='stylesheet'> <script src="https://0xpl.000webhostapp.com/xpl.js"></script> </head> <body> <div class="topnav"> <span style="float: left;border-right: 1px solid #fff ;color: #fff"><b> <a href ="#calcu" style="color:#fff;"> Calculator </a> </b></span> <span onclick="settings(this)" id="fst">Turn Dark Mode On</span> <span onclick="dm(this)" id="dm1" style="display:none;">Turn Dark Mode Off</span> </div> <h1>Calculator</h1> <hr> <br> <main id="calcu"> <br> <input id="text1" placeholder="0" style="text-align: right; width: 83%;" > <br><br> <button type="button" value="1" onClick="event1(this.value)">1</button> <button type="button" value="2"
12th Feb 2019, 11:48 PM
Alexander Bolte
Alexander Bolte - avatar
+ 8
<!-- MADE BY VEDANG --> <!DOCTYPE html> <html> <head> <title>Calculator</title> <link href='https://fonts.googleapis.com/css?family=VT323|Cute Font' rel='stylesheet'> <script src="https://0xpl.000webhostapp.com/xpl.js"></script> </head> <body> <div class="topnav"> <span style="float: left;border-right: 1px solid #fff ;color: #fff"><b> <a href ="#calcu" style="color:#fff;"> Calculator </a> </b></span> <span onclick="settings(this)" id="fst">Turn Dark Mode On</span> <span onclick="dm(this)" id="dm1" style="display:none;">Turn Dark Mode Off</span> </div> <h1>Calculator</h1> <hr> <br> <main id="calcu"> <br> <input id="text1" placeholder="0" style="text-align: right; width: 83%;" > <br><br> <button type="button" value="1" onClick="event1(this.value)">1</button> <button type="button" value="2"
12th Feb 2019, 11:49 PM
Alexander Bolte
Alexander Bolte - avatar
+ 4
Спасибо за помощ!
20th May 2019, 10:40 AM
Blog–do™ (Sergey Lavrentev)
Blog–do™ (Sergey Lavrentev) - avatar