21 Mart 2010 Pazar

Girilen Real Sayının Negatif veya Pozitif Olduğunu Bulan C Kodu

//www.ethemsulan.com
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argc, char *argv[])
{
    double a;
  printf("bir real sayi giriniz: ");
  scanf("%lf",&a);
  if(floor(a)<0)
  {
  printf("sayi negatiftir\n");
}
else printf("sayi pozitif\n");
  system("PAUSE");	
  return 0;
}

Hiç yorum yok:

Yorum Gönder