Page 1 of 1

Write a function that takes an input integer N>0 and prints the following pattern. See some print examples below for dif

Posted: Sat May 14, 2022 7:39 pm
by answerhappygod
Write A Function That Takes An Input Integer N 0 And Prints The Following Pattern See Some Print Examples Below For Dif 1
Write A Function That Takes An Input Integer N 0 And Prints The Following Pattern See Some Print Examples Below For Dif 1 (66.08 KiB) Viewed 36 times
Write a function that takes an input integer N>0 and prints the following pattern. See some print examples below for different values of N If N=1, output is 1 If N=2, output is 1 2 1 If N=3, output is 1 2 3 2 1 1 If N=4, output is 1 2 3 4 3 2 1 1 2 1 If N=5, output is 1 2 3 4 5 4 3 2 1 1 2 3 2 1