Introduction - If you have any usage issues, please Google them yourself
Print out the following Triangle (required to print out 10 rows). 1,111,211,331,146,411,510 10 5 1 1 ..................... algorithm Tip: Let a two-dimensional array: a [11] [11], the Triangle has following characteristics: A, the first column of the array elements and diagonal values are 1 B, other elements: a [i] [j] = a [i-1] [j-1]+a [i- 1] [j] is saved as 1.cpp.