Floyd’s Triangle: Javascript Code
Floyd’s triangle is a right-angled triangular array of natural numbers.It is defined by filling the rows of the triangle with consecutive numbers, starting with a 1 in the top left corner. The numbers along the left edge of the triangle are the lazy caterer’s sequence and the numbers along the right edge are the triangular numbers. The nth row sums to n(n2 + 1)/2, the constant of an n × n magic square.
Example: Floyd’s Triangle with a depth of 5.
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
1 2 3 4 5 6 7 8 9 10 | var tempStr = "",prevNumber=1,i,depth=10; for(i=0;i<depth;i++){ tempStr = "";j=0; while(j<= i){ tempStr = tempStr + " " + prevNumber; j++; prevNumber++; } console.log(tempStr); } |
Output:
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35 36
37 38 39 40 41 42 43 44 45
46 47 48 49 50 51 52 53 54 55
-Rushi