摘要: #include <stdio.h>int main(){ int nums[10]={1,5,3,6,4,2,7,9,8,10}; int a,b,c; for(a=0;a<9;a++) { for(b=0;b<9-a;b++) { if(nums[b]>nums[b+1]) { c=nums[b 阅读全文
posted @ 2019-10-08 23:09 Zl灏 阅读(121) 评论(0) 推荐(0)