C#: Display the pattern like right angle triangle with number increased by 1
Write a C# Sharp program to make such a pattern like a right angle triangle with the number increased by 1.
The pattern is as follows :
1 2 3 4 5 6 7 8 9 10

Sample Solution:-
C# Sharp Code:
Sample Output:
Display the pattern like right angle triangle with number increased by 1: --------------------------------------------------------------------------- Input number of rows : 5 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Flowchart:

C# Sharp Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C# Sharp to make such a pattern like right angle triangle with a number which will repeat a number in a row.
Next: Write a program in C# Sharp to make such a pattern like a pyramid with numbers increased by 1
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.