Geek0ne Dec 21, 2016 C语言求三个数最大数和最小值 /* 求三个数最大值和最小值 */ #include <stdio.h> int main() { //三目运算符 int a=10,b=20,c=30; ...