c中判断三个数字的大小并输出最大值

代码一:
#include <stdio.h>
int main()
{
	int a , b , c;
	printf("请你输入三个数字:");
	scanf("%d %d %d",&a,&b,&c); 
	if (a<b)
		a=b;
	if (a<c)
		a=c;
	printf("最大值为:%d",a);
	return 0;
	
 }

            



代码二:

#include<stdio.h>
//定义函数
float Getmax(float x,float y,float z)    //可以用int类型 
{
	float max;
	if(x<y) 
	    x=y;
	if(x<z)
	    x=z;
	max=x;
	return max;
} 
main()                            //主函数  ,运行从主函数开始
{
	float a,b,c,max;
	
	printf("请你输入三个数字:\n");
	
	scanf("%f %f %f",&a,&b,&c);
	
	max=Getmax(a,b,c);                //回到定义函数计算Getmax
	
	printf("最大值为:\n %0.2f",max);
}





 

 

    原文作者:Tony.j
    原文地址: https://blog.csdn.net/weixin_44119517/article/details/86708706
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞