博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C语言 冒泡排序法
阅读量:5986 次
发布时间:2019-06-20

本文共 921 字,大约阅读时间需要 3 分钟。

  hot3.png

/*************************************************************************    > File Name: sort.c    > Author: heathcliff    > Mail: ---------------------     > Created Time: 2016年04月04日 星期一 18时45分07秒 ************************************************************************/#include
#define M 10//定义数组的范围int main(void){ /* int m; scanf("%d",&m); a[m]; 是错误的,不能这么定义 */ int a[M]; int i = 0; int j = 0; int temp; printf("please input 10 numbers:\n"); for(i = 0;i < M;i++){ scanf("%d",&a[i]); } for(i = 0;i < M;i++) for(j = M-1;j >= i;j--){ if(a[j] < a[j-1]){ temp = a[j-1]; a[j-1] = a[j]; a[j] = temp; } } printf("The sort of output is as following :\n"); for(i = 0;i < M;i++) printf("[%d]",a[i]); printf("\n");}

转载于:https://my.oschina.net/u/1774218/blog/652358

你可能感兴趣的文章
printf
查看>>
我的SIP开发之路
查看>>
Hibernate validator验证
查看>>
猥琐百度杯猥琐CTF
查看>>
MySQL查询在一个表而不在另一个表中的数据
查看>>
软件项目研发中的沟通管理
查看>>
js控制button
查看>>
web,xml中关于filter的使用
查看>>
JDBC基础-setFetchSize方法
查看>>
SQL Server 存储过程的运用
查看>>
MySQL5.7源码安装问题汇总
查看>>
Android Programming 3D Graphics with OpenGL ES (Including Nehe's Port)
查看>>
小程序之脚本语言
查看>>
java 网络编程之UDP通信和简单的群聊程序
查看>>
网络最大流算法—最高标号预流推进HLPP
查看>>
Android 撕衣服(刮刮乐游戏)
查看>>
最后一次谈 VirtualBox的安装方法
查看>>
关于有默认值的字段在用EF做插入操作时的思考
查看>>
Android经常使用自己定义控件(二)
查看>>
Cocos Creator 鼠标事件
查看>>