给定数字A。任务是检查A是正数,负数还是零。
例子:
Input: A = 2
Output: 2 is positive
Input: A = -554
Output: -554 is negative
在下面的程序中,查找A是正,负还是零;首先,将数字作为用户使用scanf in的输入 ,然后使用检查A是否为正声明和 , 和运算符。
下面是C程序,用于查找数字是正数,负数还是零。
#include
int main()
{
int A;
printf("Enter the number A: ");
scanf("%d", &A);
if (A > 0)
printf("%d is positive.", A);
else if (A < 0)
printf("%d is negative.", A);
else if (A == 0)
printf("%d is zero.", A);
return 0;
}
输出:
Enter the number A =: -54
-54 is negative.
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。