
C# Sharp Exercises: Display alphabet pattern like R with an asterisk
C# Sharp For Loop: Exercise-75 with Solution
Write a C#Sharp program to display alphabet pattern like 'R' with an asterisk.
Pictorial Presentation:

Sample Solution:
C# Sharp Code:
using System;
public class Exercise75
{
public static void Main()
{
int row,column;
Console.Write("\n\n");
Console.Write("Display the pattern like 'R' with an asterisk:\n");
Console.Write("---------------------------------------------");
Console.Write("\n\n");
for(row=0;row<=6;row++)
{
for (column=0; column<=6; column++)
{
if (column == 1 || ((row == 0 || row == 3) && column > 1 && column < 5) || (column == 5 && row != 0 && row < 3) || (column == row - 1 && row > 2))
Console.Write("*");
else
Console.Write(" ");
}
Console.Write("\n");
}
Console.Write("\n");
}
}
Sample Output:
Display the pattern like 'R' with an asterisk: --------------------------------------------- **** * * * * **** * * * * * *
Flowchart:

C# Sharp Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a C#Sharp program to display alphabet pattern like 'Q' with an asterisk.
Next: Write a C#Sharp program to display alphabet pattern like 'S' with an asterisk.
What is the difficulty level of this exercise?
New Content: Composer: Dependency manager for PHP, R Programming