#include void main(){ int max(flaot x, float y);float a, b;int c;scanf(“%f,%f”, &a, &b);c=max(a, b);printf(“Max is %d”, c);}int max(float x, float y){ float z;z = x > y ? x : y;return z;}函数max的返回值是什么数据类型( )

时间:2022-11-11 20:37:25

相似题目