using System;
using System.Collections.Generic;
using System.Text;
namespace True_False_Read
{
class Program
{
static void Main(string[] args)
{
basla:
string s;
bool a1, b1;//a1,b1 bool (doğru-yanlış)tanımlama
string a, b;//a,b string tanımlama
Console.WriteLine();
Console.Write("B Değeri=");
a=Console.ReadLine();//a string eğerini gir
Console.Write("A Değeri=");
b=Console.ReadLine();//b string değerini gir
a1 = bool.Parse(a);//a string değerini bool'e çevir
b1 = bool.Parse(b);//b string değerini bool'e çevir
Console.WriteLine("{0} && {1} = {2}", a1, b1, a1 && b1);//A ve B 'nin Değeri
Console.WriteLine("{0}
{1} = {2}", a1, b1, a1
b1);//A veya B 'nin Değeri
Console.WriteLine("!{0} = {1}", a1, !a1);//A'nın Değili
Console.ReadLine();
goto basla;//Yeniden başla
}
}
}
Hiç yorum yok:
Yorum Gönder