编写程序以从单行if
语句中删除(不使用)大括号。
提示
当只有一个语句属于if
语句时,大括号是可选的。
示例代码
#include <stdio.h>
int main()
{
int a,b;
a = 166;
b = a - 66;
if( a > b)
printf("%d 大于 %d\n",a,b);
return(0);
}
执行上面示例代码,得到以下结果:
hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
166 大于 100