|
C# Number Pattern (9) |
/* C# program to print the following pattern
1
22
333
4444
55555 */
namespace Patterns
{
class Program
{
static void Main(string[] args)
{
int i, j;
for (i = 1; i <= 5; i++)
{
for (j = 1; j <= i; j++)
{
Console.Write(i);
}
Console.WriteLine();
}
}
}
}
No comments:
Post a Comment