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 的使用的主要内容,如果未能解决你的问题,请参考以下文章
MyBatis中if - else if - else 的使用