参考手册
参考手册
实例 C 语言if 语句
源代码
运行代码
#include <stdio.h> int main() { if (20 > 18) { printf("20 is greater than 18"); } return 0; }
x
#include <stdio.h>
int
main
() {
if
(
20
>
18
) {
printf
(
"20 is greater than 18"
);
}
return
0
;
}
输出结果
20 is greater than 18