怎么没有讨论呢

你这代码保熟吗?(鸡叫)  •  1年前


include <stdio.h>

int main() {

int a, b, c, d;
scanf("%d %d %d", &a, &b, &c);
if (a < b) {
	d = b;

} else {
	d = a;
}
if (d < c) {
	d = c;

}
printf("%d", d);
return 0;

}


评论:

请先登录,才能进行评论