-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ucgen.cs
48 lines (42 loc) · 886 Bytes
/
Ucgen.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
using System;
namespace ucgen_cizme;
struct Ucgen
{
internal Ucgen(int uzunluk)
{
Ciz(uzunluk);
}
private void Ciz(int uzunluk)
{
int orta = 0;
for (int sol = uzunluk - 1; sol >= 0; sol--)
{
BoslukAt(sol);
Console.Write(@"/");
if(sol == 0)
CizgiCiz(orta);
else
BoslukAt(orta);
Console.WriteLine(@"\");
orta += 2;
}
Console.WriteLine();
Console.WriteLine("Üçgen çizildi.");
}
private void BoslukAt(int bosluk)
{
while (bosluk > 0)
{
Console.Write(" ");
bosluk--;
}
}
private void CizgiCiz(int uzunluk)
{
while (uzunluk > 0)
{
Console.Write("_");
uzunluk--;
}
}
}