#include<stdio.h>
int main()
{
int t,a,b,c;
scanf("%d%d%d",&a,&b,&c);
if(a>b)
if(a>c) t=a;
else t=c;
else
if(b>c) t=b;
else t=c;
printf("%d",t);
return 0;
}
输入三个数,输出其最大值
原文作者:真真真二狗
原文地址: https://blog.csdn.net/weixin_43742177/article/details/84306043
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/weixin_43742177/article/details/84306043
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。