patcko

Untitled

Dec 3rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var text = "";
  2. for (var stotici = 1; stotici < 10; stotici++) {
  3.     text += stotici;
  4.     for (var desetici = 0; desetici < 10; desetici++){
  5.         if (stotici === desetici) {
  6.                 continue;
  7.         }
  8.      text += desetici
  9.     }
  10.         for (var edinici = 0; edinici < 10; edinici++){
  11.               if (edinici === desetici || edinici === stotici) {
  12.                        continue;
  13.               }
  14.        text += edinici
  15.         }
  16.      text += text + ";";
  17.     }
  18.  console.log(text);
Advertisement
Add Comment
Please, Sign In to add comment