易百教程

编写程序:在单行if语句中不使用大括号

编写程序以从单行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