博客
关于我
小朋友学C语言(12):判断
阅读量:75 次
发布时间:2019-02-26

本文共 1207 字,大约阅读时间需要 4 分钟。

(一)

先动手编写一个程序:

#include 
int main(){ if(1) { printf("The condition is true!\n"); } return 0;}

运行结果:

The condition is true!

再把1依次改为,2,5,100,-10,发现运行结果完全一样。

再改成if(0),此时发现没有运行结果,说明printf()语句没被执行。

C语言把判断语句中的任何非0或非空的值当作真。所以if(1), if(2), if(5), if(100), if(-10)的效果是一样的。

(二)

再编写一个程序:

#include 
int main(){ int a = 100; if(a > 0) { printf("The condition value is %d\n", (a > 0)); } return 0;}

运行结果:

The condition value is 1

分析:

a = 100,a > 0成立 ,所以if( a > 0)等价于if(1)。
在C语言中,判断语句是有值的,要么为1,要么为0。比如本程序中a > 0的值就是1。

(三)

最后编写一个程序:

#include 
int main(){ char c1 = '\0'; if(c1) { printf("The condition is true!\n"); } else { printf("The condition is false!\n"); } char c2 = ' '; if(c2) { printf("The condition is true!\n"); } else { printf("The condition is false!\n"); } char c3 = 'A'; if(c3) { printf("The condition is true!\n"); } else { printf("The condition is false!\n"); } return 0;}

运行结果:

The condition is false!The condition is true!The condition is true!

说明:C语言中用’\0’来表示空字符。空格’ ‘也是一个字符,这从if(c2)条件为真就可以看出来。

(四)作业

在纸上默写(三)中的程序。

更多内容请关注微信公众号

wchat_official.jpg

转载地址:http://woqz.baihongyu.com/

你可能感兴趣的文章
MySQL中auto_increment有什么作用?(IT枫斗者)
查看>>
MySQL中B+Tree索引原理
查看>>
mysql中cast() 和convert()的用法讲解
查看>>
mysql中datetime与timestamp类型有什么区别
查看>>
MySQL中DQL语言的执行顺序
查看>>
mysql中floor函数的作用是什么?
查看>>
MySQL中group by 与 order by 一起使用排序问题
查看>>
mysql中having的用法
查看>>
MySQL中interactive_timeout和wait_timeout的区别
查看>>
mysql中int、bigint、smallint 和 tinyint的区别、char和varchar的区别详细介绍
查看>>
mysql中json_extract的使用方法
查看>>
mysql中json_extract的使用方法
查看>>
mysql中kill掉所有锁表的进程
查看>>
mysql中like % %模糊查询
查看>>
MySql中mvcc学习记录
查看>>
mysql中null和空字符串的区别与问题!
查看>>
MySQL中ON DUPLICATE KEY UPDATE的介绍与使用、批量更新、存在即更新不存在则插入
查看>>
MYSQL中TINYINT的取值范围
查看>>
MySQL中UPDATE语句的神奇技巧,让你操作数据库如虎添翼!
查看>>
Mysql中varchar类型数字排序不对踩坑记录
查看>>