0
Solution for this problem..
Print it in c. With user input. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
2 odpowiedzi
+ 2
n = 15; m = 5
for row in range(0, 5):
for col in range(0, m):
print (n, sep="", end="\t"); n -=1
print(); m -=1
https://code.sololearn.com/cBF6EH7WmC3W
Good Luck
0
What things will you need to use in this program?
Can you post your psuedocode for us to help you with?
Eg
Take inputs of characters & lines
Make a loop
Check how many characters printed, new line when required
Etc etc.