Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //https://shpp.gitbook.io/zero/tutorials/loops/numbers_sequence
- let x = +prompt("введіть натуральне число");
- //Перша частина
- let y = 1
- while (y <= x) {
- console.put(y)
- if (y < x) {
- console.put(",")
- }
- y++
- }
- console.log("\n")
- //Друга частина
- for (y = 1; x >=y; y++ ) {
- console.put(y)
- if (y < x){
- console.put(",")
- }
- }
- console.log("\n")
- //Третя частина
- y = x
- while (y >= 1){
- console.put(y)
- if (y > 1)
- console.put(",")
- y--
- }
- console.log("\n")
- //Четверта частина
- y = 1
- for(y = x; y>= 1; y--){
- console.put(y)
- if (y > 1){
- console.put(",")
- }
- }
- console.log("\n")
- //П'ята частина
- y = 1
- while (x > y){
- y++
- if (y % 2 == 0){
- console.put(y)
- }else if (y<x){
- console.put(",")
- }
- }
- console.log("\n")
- //Шоста частина
- for(y=2; x >= y; y ++){
- if (y % 2 == 0){
- console.put(y)
- }else if (x>y){
- console.put(",")
- }
- }
- console.log("\n")
- //Сьома частина
- y = x
- while (y > 1){
- if (y % 2 == 0){
- console.put(y)
- }
- else if (y < x){
- console.put(",")
- } y--
- }
- console.log("\n")
- //Восьма частина
- for(y=x; y>1; y--){
- if (y % 2 == 0){
- console.put(y)
- }
- else if (y < x){
- console.put(",")
- }
- }
Add Comment
Please, Sign In to add comment