Computer Science, asked by aashikashish1422, 11 months ago

Write a program to print the following pattern
1
3 1
5 3 1
7 5 3 1
9 7 5 3 1

Answers

Answered by jashan1102
2
string='1'
pattern =string + 2
print pattern
Answered by alok9581
14

Answer:

Output

1

3 1  

5 3 1  

7 5 3 1  

9 7 5 3 1

Attachments:
Similar questions