题解列表

筛选

三个数字排大小,忙人解法^-^。

摘要:解题思路:多次使用if   else嵌套来判断三个数的大小。注意事项:无。参考代码:#include<stdio.h>int main(){    int a,b,c,max,min,zh;    s……