Sagot :
Cevap:
boy=int(input("boy giriniz :"))
if boy>160:
print("uzun boylusunuz")
else:
print("kısa boylusunuz")
python dilinde yazdım
Açıklama:
Cevap:
C# için:
Console.Write("Boyu giriniz: ");
int boy = Convert.ToInt32(Console.ReadLine());
if (boy>160)
{
Console.WriteLine("Uzun boylusunuz");
}
else
{
Console.WriteLine("Kısa boylusunuz");
}
Console.ReadKey();
Thank you for visiting our website wich cover about Bilgisayar. We hope the information provided has been useful to you. Feel free to contact us if you have any questions or need further assistance. See you next time and dont miss to bookmark.