Hormold

Untitled

Dec 4th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. A=prompt("Задайте строку:");
  3. if(A!==""){
  4.     dlina=A.length-1;
  5.     str="";
  6.     polovina=Math.round(dlina/2);
  7.     Arr=A.split("");
  8.     for(i in Arr){
  9.         i=parseInt(i);
  10.         if(i!==polovina){
  11.             str+=Arr[i];
  12.         }
  13.     }
  14.     alert("Новая строчка: "+str);
  15. }
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment