摘要: 冒泡排序与选择排序 冒泡排序 condition:输入5个数字,冒泡排序,逆序输出 #include<stdio.h> int main(){ int userInput,tmp,i,j,arr[6],flag; flag = 0; for(int i=0;i<5;i++){ scanf("%d", 阅读全文
posted @ 2024-11-05 12:30 GJ504b 阅读(146) 评论(0) 推荐(0)