****1
***2
**3
*4
5
Write a program in java to print the above pattern
Answers
Answered by
0
Answer:
Input : n = 4 Output : 1 3*2 4*5*6 10*9*8*7 Input : n = 5 Output : 1 3 *2 4*5*6 ... C++ implementation to print the following ... Driver program to test above.
Similar questions