出题人的学生的答案

江清月近魂  •  1年前


include <stdio.h>

int t;

int abc(int a1, int b1, int c1) {

if (a1 > b1) {
	t = a1;
} else {
	t = b1;
}
if (t < c1) {
	t = c1;
}
return t;

}

int main(void) {

int a, b, c;
scanf("%d %d %d", &a, &b, &c);
t = abc(a, b, c);
printf("%d", t);
return 0;

}


评论:

请先登录,才能进行评论