Assignment # 1 Print the pattern given below using single
printf statement

XX XX
XX XX
XX XX
X X
X X
XX XX
XX XX
XX XX


Assignment # 2 Print the pattern given below using single
printf statement
(please do NOT use the string function below)
0
909
89098
7890987
678909876
56789098765
4567890987654
345678909876543
23456789098765432
1234567890987654321

Answer Posted / santosh sasane

Assignment # 2 Print the pattern given below using single
printf statement
(please do NOT use the string function below)
0
909
89098
7890987
678909876
56789098765
4567890987654
345678909876543
23456789098765432
1234567890987654321

//( Solved With the Console Application in .net )

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{

class Program
{

static void Main(string[] args)
{ int q = 10;
int p = 10;
for (int i = 0; i < 10; i++)
{
for (int j = i; j <= i; j++)
{
StringBuilder a = new StringBuilder();
if (q == 10)
{
a.Append(j - i);
}
for (int k = q; k <= 9; k++)
{
a.Append(k);
if (k == 9) { a.Append(0); }
}
for (int g = 9; g >= q; g--)
{
a.Append(g);
}
q--;
p--;
Console.WriteLine(a);
}
}
Console.ReadLine(); // Used for hold the Disply
}
}
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we create instance of private class in c#?

498


if we are updating a database using thread, and mean while application crashes or thread being aborted then what will happen in Database? Rollback or Database will be updated? Please explain with different scenario.

1912


How can I produce an assembly?

581


What is the difference between do and while loop?

442


How do you specify a custom attribute for the entire assembly (rather than for a class)?

523






What are actions in c#?

481


What is thread life cycle in c#?

472


Is unity object oriented?

489


What exactly is serverless?

422


What are destructors in C#?

836


Can derived classes have greater accessibility than their base types?

536


How do you use nullable?

497


What is data reader in c#?

596


What Is A Satellite Assembly?

539


What is the interface in c#?

510