题解列表

筛选

[编程入门]选择排序-题解(C语言代码)

摘要:解题思路;这道题用了数组,感兴趣的同学可以看看,用了很多循环,看不懂可以提问注意事项:参考代码:#include <stdio.h>int main() { int i,j,t; int a[10];……