Keşfet

C# KÜÇÜK EŞİTTİR,BÜYÜK EŞİTTİR

Buz

Yeni Üye
Katılım
17 Şub 2021
Mesajlar
152
Tepkime puanı
0
Puanları
0
Yaş
44
Kod:
oolean sonuc;
double not1, not2,not3;
not1 = 3.67;
not2 = 3.20;
 
sonuc = not1 >= not2; //true
not3 = 3.20;
sonuc = not2 <= not3; //true
Console.WriteLine("sonuc : " + sonuc);
Console.ReadLine();



Boolean sonuc;
byte yas1 = 15, yas2 = 18;
sonuc = yas2 < yas1;
Console.WriteLine("sonuc : " + sonuc);
Console.ReadLine();
 

Konu görüntüleyen kullanıcılar

Benzer konular

Geri
Üst