-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMLogo.cs
59 lines (51 loc) · 1.45 KB
/
MMLogo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
namespace MMLogo
{
class Program
{
public static void Main()
{
int N = int.Parse(Console.ReadLine());
char[,] m = new char[N + 1, 10 * N];
for (int row = 0; row < m.GetLength(0); row++)
{
for (int col = 0; col < m.GetLength(1); col++)
{
m[row, col] = '-';
}
}
fillMatrix(m, N);
printMatrix(m);
}
public static void printMatrix(char[,] m)
{
for (int row = 0; row < m.GetLength(0); row++)
{
for (int col = 0; col < m.GetLength(1); col++)
{
Console.Write(m[row, col]);
}
Console.WriteLine();
}
}
public static void draw(char[,] m, int row, int col, int N)
{
for (int i = 0; i < N; i++)
{
m[row, col + i] = '*';
}
}
public static void fillMatrix(char[,] m, int N)
{
int[] tops = { N, 3 * N, 6 * N, 8 * N };
foreach (int col in tops)
{
for (int row = 0; row < N + 1; row++)
{
draw(m, row, col - row, N);
draw(m, row, col + row, N);
}
}
}
}
}