#include<stdio.h>

#include<math.h>

main()

{

int x,y,n,m ,z;

      scanf("%d%d%d",&x,&y,&n);

z=max(x,y);

m=max(n,z);

printf("%d.\n",m);

}

     int max(int a,int b)

{

if(a>b) return a;

else return b; 

}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-11-15
  • 2022-01-26
  • 2022-02-04
  • 2022-12-23
猜你喜欢
  • 2022-02-09
  • 2021-12-03
  • 2021-09-07
  • 2021-08-18
  • 2021-09-23
  • 2022-12-23
  • 2022-01-08
相关资源
相似解决方案