25 Mart 2014 Salı

sayının negatifmi yoksa pozitifmi olduğunu veren program

Console.WriteLine("girilen sayının negatif veya pozitif olduğunu bulan");
int x = Convert.ToInt32(Console.ReadLine());
if (x >= 0)
{
Console.WriteLine("girilen sayı pozitiftir");
}
else
{
Console.WriteLine("girilen sayı negatif");
}

Console.ReadLine();

Hiç yorum yok:

Yorum Gönder