个人主页: @太阳哥哥
本文收录专栏: C语言学习之路
其他专栏: ARM学习之路
学习格言:路漫漫其修远兮,吾将上下而求索
欢迎点赞、关注、收藏( •̀ ω •́ )✧ 一起努力,一起学习!
目录
1、if语句格式
2、第一种方法
3、第二种方法
if(条件1)
{
条件1 真,语句块
}
else if(条件2)
{
条件2 真,语句块
}
else if(条件3)
{
条件3 真,语句块
}
else if(条件n)
{
条件n 真,语句
}
else
{
不满足语句块
}
if语句举例:输入3个数,从小到大排序
#include
int main()
{
int x,y,z;
scanf("%d%d%d",&x,&y,&z);
if(x <= y && y <= z)
{
printf("%d < %d < %d",x,y,z);
}
else if(x <= z && z <= y)
{
printf("%d < %d < %d",x,z,y);
}
else if(y <= x && x <= z)
{
printf("%d < %d < %d",y,x,z);
}
else if(y <= z && z <= x)
{
printf("%d < %d < %d",y,z,x);
}
else if(z <= x && x <= y)
{
printf("%d < %d < %d",z,x,y);
}
else if(z <= y && y <= x)
{
printf("%d < %d < %d",z,y,x);
}
}
#include
int main()
{
int x,y,z;
int t;
scanf("%d%d%d",&x,&y,&z);
if(x > y)
{
t = x;
x = y;
y = t;
}
if(x > z)
{
t = x;
x = z;
z = t;
}
if(y > z)
{
t = y;
y = z;
z = t;
}
printf("%d < %d < %d\n",x,y,z);
}
✨本篇到此结束啦!欢迎点赞收藏❤关注