patcko

Untitled

Dec 3rd, 2017
84
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 // 10; 12; 13; 14; 15; 16; 17; 18; 19
  9.    
  10.         for (var edinici = 0; edinici < 10; edinici++){
  11.               if (edinici === desetici || edinici === stotici) {
  12.                        continue;
  13.               }
  14.        
  15.        text += edinici /* 102; 103; 104; 105; 106; 107; 108; 109
  16.                           123; 124; 125; 126; 127; 128; 129 */
  17.         }
  18.     }
  19.   text += text + ";";
  20. }
  21.  console.log(text);
Advertisement
Add Comment
Please, Sign In to add comment