Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var text = "";
- for (var stotici = 1; stotici < 10; stotici++) {
- text += stotici;
- for (var desetici = 0; desetici < 10; desetici++){
- if (stotici === desetici) {
- continue;
- }
- text += desetici // 10; 12; 13; 14; 15; 16; 17; 18; 19
- for (var edinici = 0; edinici < 10; edinici++){
- if (edinici === desetici || edinici === stotici) {
- continue;
- }
- text += edinici /* 102; 103; 104; 105; 106; 107; 108; 109
- 123; 124; 125; 126; 127; 128; 129 */
- }
- }
- text += text + ";";
- }
- console.log(text);
Advertisement
Add Comment
Please, Sign In to add comment