摘要: 自然语言解决问题:冒泡排序通过循环将数组中的数字依次进行排序 流程图: 具体代码: #include<stdio.h>#define N 10 int main(){ int i,j,a[N],t,count=0; printf("请为数组元素赋初值: \n"); for(i=0;i<N;i++) 阅读全文
posted @ 2023-04-17 23:38 Mini-Q 阅读(26) 评论(0) 推荐(0)