bool a = 5 <= 5;
bool b = 5 >= 5;
bool c = 8 >= 8;
bool d = 15 <= 15;
Console.WriteLine("{0}n{1}n{2}n{3}n", a, b, c, d);
Console.ReadLine();
}
}
METODLAR
BASİT BİR TOPLAMA
static void Main(string[] args)
{
int a;
a = topla(3, 5);
Console.WriteLine(a);
Console.ReadLine();
}
static int topla(int i, int j)
{
int sonuc;
sonuc = i + j;
return sonuc;
Hiç yorum yok:
Yorum Gönder