%0
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
using System;
namespace KararYapilari
{
internal class Program
{
static void Main(string[] args)
{
int yas = 25;
if (yas < 18)
{
Console.WriteLine("Cocuk");
}
else if (yas >= 18 && yas < 31)
{
Console.WriteLine("Genc");
}
else if (yas >= 31 && yas < 51)
{
Console.WriteLine("Orta Yas");
}
else
{
Console.WriteLine("Yasli");
}
int gun = 3;
switch (gun)
{
case 1: Console.WriteLine("Pazartesi"); break;
case 3: Console.WriteLine("Carsamba"); break;
default: Console.WriteLine("Diger gun"); break;
}
}
}
}
▸ Çalıştır'a bas, çıktı burada görünecek.