Day 54: Pattern using loops of 100DaysCodingChallenge
Hello all,
#day54
Day54
Today's my task was to Print the below Pattern using loops.
Full Inverted Numbers Pyramid
6
5 5 5
4 4 4 4 4
3 3 3 3 3 3 3
2 2 2 2 2 2 2 2 2
1 1 1 1 1 1 1 1 1 1 1
I have started the 100 days of coding challenge to improve my programming skills..
Code :
let a = prompt("Enter a number : ");
let string = "";
function full(a) {
  let k = 0;
  for (let i = 0; i < a; i++) {
    //console.log('j1', a - i);
    for (let j = 2 * (a-i); j > 0 ; j--) {
      //console.log('j1', j);
      string += " ";
    }
    //console.log('j2', i - k);
    for (let j = 2 * (i - k); j >= 0; j--) {
//console.log('j2', j);
      string += a - i+" ";
    }
    string += "\n";
  }
  console.log(string);
}
full(a);Output :
Happy Coding:)
Thank you...

 
 
 
Comments
Post a Comment