Advertisement
StefiIOE

IP lab 1.2

Nov 8th, 2019
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang ="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Laboratoriska1</title>
  6.  
  7. </head>
  8. <body>
  9.  
  10. <script>
  11.     vlez=prompt("Vnesete telefonski broj");
  12.     k=vlez;
  13.     op=parseInt(k/1000000);
  14.     if(op==70 || op==71 || op==72){
  15.         document.write("0" + k +"-T-Mobile");
  16.     }
  17.     else if(op==75 || op==76){
  18.         document.write("0" + k +"-ONE");
  19.     }
  20.     else if(op==77 || op==78){
  21.        document.write("0" + k + "-VIP");
  22.     }
  23.     else{
  24.         document.write("Vnesovte nevaliden broj");
  25.     }
  26. </script>
  27. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement