#include<stdio.h>

main()

{

float a,b;

printf("输入俩个任意实数\n");

scanf("%f%f",&a,&b);

if(a>b)

printf("%f\n",a);

else

printf("%f\n",b);

return 0;

}

相关文章:

  • 2021-12-30
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2018-11-20
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-10-30
  • 2021-11-04
  • 2021-11-01
相关资源
相似解决方案