深入解析C中的数值与真假
时间:2021-08-15 09:34:02|栏目:C代码|点击: 次
代码如下所示:
#include <stdio.h>
int main()
{
int pos = 2;
int neg = -2;
int mid = 0;
if(pos)
printf("pos./n");
if(neg)
printf("neg./n");
if(mid)
printf("mid./n");
printf("------------/n");
if(!pos)
printf("!pos./n");
if(!neg)
printf("!neg./n");
if(!mid)
printf("!mid./n");
return 0;
}
输出:
pos.
neg.
------------
!mid.
结论: 非零数字值都为真, 非零的非都为假。
复制代码 代码如下:
#include <stdio.h>
int main()
{
int pos = 2;
int neg = -2;
int mid = 0;
if(pos)
printf("pos./n");
if(neg)
printf("neg./n");
if(mid)
printf("mid./n");
printf("------------/n");
if(!pos)
printf("!pos./n");
if(!neg)
printf("!neg./n");
if(!mid)
printf("!mid./n");
return 0;
}
输出:
pos.
neg.
------------
!mid.
结论: 非零数字值都为真, 非零的非都为假。
栏 目:C代码
下一篇:C语言中system()执行cmd命令打开关闭程序的方法
本文标题:深入解析C中的数值与真假
本文地址:http://www.codeinn.net/misctech/167001.html