Lusien_Lashans

trrrrrrrrrr

Mar 22nd, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3. <title>Hemming code</title>
  4. <script type = "text/javascript">
  5.     //alert("Alert");
  6.     function Code(){
  7.         someText = document.getElementById('inputText').value;
  8.         someText += "000";
  9.         document.getElementById("codeText").value = someText;
  10.     }
  11. </script>
  12. </head>
  13. <body>
  14.     <h1>Код Хэмминга</h1>
  15.     <input type = "text" maxlength = "4" id = "inputText"/><br />
  16.     <input type = "button" value = "Code" onClick = "Code()"/>
  17.     <br />
  18.     <input type = "text" id = "codeText"/>
  19. </body>
  20. </html>
Add Comment
Please, Sign In to add comment