Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //https://shpp.gitbook.io/zero/tutorials/loops/stars#chastina-3
- //частина 1
- let a = 0;
- while (a < 10) {
- console.put("*");
- a++;
- }
- console.log()
- //частина 2
- a = 0;
- while (a < 100) {
- console.put("*");
- a++;
- }
- //частина 3
- console.log()
- a = 0;
- let z = +prompt("Введіть кількість зірочок");
- while (a < z) {
- console.put("*");
- a++;
- }
- //частина 4
- console.log()
- for (a = 0; a < z; a++) {
- console.put("*");
- }
- //частина 5
- console.log()
- a = 0;
- while (a < 1000) {
- console.put("**********");
- a++;
- }
Advertisement
Add Comment
Please, Sign In to add comment