Page 55 - C Programming
P. 55

ตัวอย่างที่4-3 โปรแกรมตรวจสอบเลขจํานวนเต็มบวกจํานวนเต็มลบหรือเป็นศูนย์



                                      #include <stdio.h>


                                      main()


                                        {     char a;


                                            printf("Enter Number = ");



                                                scanf("%d",&a);


                                                if(a>0)


                                                    printf("Positive Number");


                                                else if(a<0)



                                                     printf("Negative Number");


                                                else


                                                     printf("Zero Number");


                                                 getch();


                                          }
   50   51   52   53   54   55   56   57   58   59   60