Solution for this problem.. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

17th Mar 2022, 3:16 PM
Alien Abid
2 Answers
+ 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
17th Mar 2022, 5:47 PM
SoloProg
SoloProg - avatar
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.
17th Mar 2022, 7:47 PM
HungryTradie
HungryTradie - avatar