三个数求最大的数

#include "stdio.h"//引入标准输入输出库文件
int main(){
	int a,b,c,max;
	printf("请输入需要比较的三个整数,用空格分割:\n");
	scanf("%d%d%d",&a,&b,&c);
	if(a>b){
		max = a;
	}
	else{
		max = b;
	}
	if(max>c){
		max = max;
	}
	else{
		max = c;
	}
	printf("最大的数为:%d",max);
	return 0;
}

运行结果:

图片[1]-三个数求最大的数-挨踢星球
运行结果
© 版权声明
THE END
喜欢就支持一下吧
点赞14 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容