Program to print this pattern in C. Please help me:-
1
1 2 1
1 2 3 2 1
1 2 1
1
Thanks in advance
Answers
Answered by
0
x = 1
print(x)
y = 1 2 3
print (y)
z = 1 2 3 2 1
print (z)
n = 1 2 3
print (n)
t = 1
print (t)
This is in python language
Similar questions