C# program to print 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 . . . nth iteration
Problem Statement:
Write a program using loop which prints the following output.
1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 . . . nth iteration
Solution:
static void Main(string[] args)
{
int i, j, num;
Console.WriteLine("Enter value of num:");
num = Convert.ToInt32(Console.ReadLine());
for (i = 1; i <= num; i++)
{
for (j = 1; j <= i; j++)
Console.Write(i + " ");
}
Console.ReadLine();
}
article C# program to print nth iteration using loops has been completed in the discussion
hopefully the information C# program to print nth iteration using loops that we provide can be useful for you to know the development of technology in the present
articles C# program to print nth iteration using loops we have conveyed to you, if feel this information is useful and you want to bookmark or share so that more people who know please use link https://profsmythe.blogspot.com/2013/12/c-program-to-print-nth-iteration-using.html.
Tag :
Csharp,
programming,
programs,
Generally I read article only when I need solutions of any problem, but whenever I visit your site unable to stop myself from reading all your latest articles. Keep sharing because these are helping me and my students who seek help with programming assignment very well.
ReplyDelete