if . else .if else 的使用

Posted morn1ng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了if . else .if else 的使用相关的知识,希望对你有一定的参考价值。

#include<stdio.h>

int main()

int a = 0;

scanf_s("%d", &a);           //&不能漏

if(a<18)

 printf("青年\\n");

else if (a >= 18 && a < 40)    //不能用18<=a<40

 printf("中年\\n");

else  

 printf("老年\\n");





备注:if 只会和他最接近的else搭配








return 0;


以上是关于if . else .if else 的使用的主要内容,如果未能解决你的问题,请参考以下文章

if-else语句中,if和else的配对原则各是啥

MyBatis中if - else if - else 的使用

if . else .if else 的使用

132-使用if else if else语句进行多条件判断

Shell if else语句(详解版)

SQL语句中能否含有if....else...判断语句?