using System;
namespace Ornek
{
class Program
{
static void Main()
{
bool a, b;
a = true;
b = true;
Console.WriteLine("{0} || {1} = {2}",a,b,a || b );
a = true;
b = false;
Console.WriteLine("{0} || {1} = {2}", a, b, a || b);
a = false;
b = true;
Console.WriteLine("{0} || {1} = {2}", a, b, a || b);
a = false;
b = false;
Console.WriteLine("{0} || {1} = {2}", a, b, a || b);
}
}
}
11 Temmuz 2011 Pazartesi
Kaydol:
Kayıt Yorumları (Atom)
0 yorum:
Yorum Gönder