Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //https://shpp.gitbook.io/zero/tutorials/loops/numbers_sequence
- let N = +prompt("Введіть число")
- //від 1 до N включно, через while
- let a = 1
- while(N >= a){
- console.put(a)
- if (N > a){
- console.put(",")}
- a++
- }
- console.log("\n")
- //від 1 до N включно, через for
- for(a = 1; N >= a; a++){
- console.put(a)
- if (a == N) continue
- console.put(",")
- }
- console.log("\n")
- //від N до 1 включно, через while
- let G = N
- a = 1
- while(G >= a){
- console.put(G)
- if (G > a){
- console.put(",")
- }
- G--
- }
- console.log("\n")
- //від N до 1 включно, через for
- let H = N
- a = 1
- for(a = 1; H >= a; H--){
- console.put(H)
- if (H == a)continue
- console.put(",")
- }
- console.log("\n")
- //парні від 2 до N включно, через while
- a = 2
- while(a <= N){
- console.put(a)
- if (a < N){
- console.put(",")}
- a = a + 2
- }
- console.log("\n")
- //парні від 2 до N включно, через for
- a = 2
- for(a = 2; a <= N; a = a + 2){
- console.put(a)
- if(a < N){
- console.put(",")
- }
- }
- console.log("\n")
- //парні від N до 2 включно, через while
- a = 2
- let Z = N
- while(a <= Z){
- console.put(Z)
- if (a < Z){
- console.put(",")}
- Z = Z - 2
- }
- console.log("\n")
- //парні від N до 2 включно, через for
- for(a = 2; a <= N; N = N - 2){
- console.put(N)
- if(N > a){
- console.put(",")
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement