利用C语言,编写一个函数,使其返回3个整型参数中的最大值。 // 编写一个函数,使其返回3个整型参数中的最大值。 #include <stdio.h> void max(int data1, int data2, int data3) { int max; if (data1 >