โ Back to Loops
Question 222
Number Triangle
Number Triangle
Read an integernfrom standard input and print a number triangle: rowicontains the digits1throughiwith no spaces. For example, if the input is4, print: 1 12 123 1234 Use a nested loop: the outer loop for the row, the inner loop for the columns.
Expected Output:
1 12 123 1234
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.