在下面的程序中,我们检查输入整数是正数还是负数。如果输入数字大于零,则其为正数,否则为负数。如果数字为零则既不是正数也不是负数。我们在下面的 C 程序中遵循了相同的逻辑。
/* Description: A program to check whether the input
* integer number is positive or negative.
* Written by: Chaitanya Singh
* Published on: beginnersbook.com
*/#include<stdio.h>voidmain(){int num;printf("Enter a number: \n");scanf("%d",&num);if(num >0)printf("%d is a positive number \n", num);elseif(num <0)printf("%d is a negative number \n", num);elseprintf("0 is neither positive nor negative");}
C
输出 1:
Enter a number:00 is neither positive nor negative