题解列表

筛选

#三位数的排序

摘要:解题思路:求出max,min,middle,在进行排序注意事项:基础知识的应用参考代码:#include<stdio.h>int main(){ int a,b,c,max,min,middle; s……