梦开始的地方reesun.blog.chinaunix.net
reesun
全部博文(333)
spider(0)
理论(0)
cpp(2)
Java(14)
PHP(12)
汇编(4)
python(12)
C语言(30)
hadoop(0)
sips(1)
Gluster(8)
Oracle(2)
nginx(4)
mysql(3)
Apache(2)
memcached(7)
Apache模块(5)
Apache管理(9)
服务器搭建(1)
Kernel Driver(3)
类Unix环境/系统(2)
redhat(4)
Ubuntu(38)
认证(0)
应用(8)
基础知识(32)
redis(3)
Postfix util源码(0)
memcached源代码(1)
magent源代码阅读(3)
超文本传送协议学(3)
JOS(10)
程序员(17)
摄影(3)
狗狗(0)
历史(1)
sports(2)
读书(3)
手表(0)
汽车(1)
随笔(3)
影评(0)
人生就是这样(8)
2015年(1)
2011年(116)
2010年(187)
2009年(25)
2008年(3)
2007年(1)
叶绍琛
wangchen
zcyyezi
pqwfree
小雅贝贝
ranson_z
cainoma
枫叶无霜
prolj
wjydlut
LikeFace
少林功夫
cynthia
Bsolar
Phyllis6
浪花小雨
sdhh_zha
13405800
分类: C/C++
2010-09-19 18:51:52
int max_sum ( int *array, int array_length ) { int tags = 0; int max, i, j, k, m; for (i = 0; i < array_length; i++ ) { max = 0; for ( j = i; j < array_length; j++ ) { max += array[j]; if ( tags < max || tags == 0 ) { k = i; m = j; tags = max; } } } printf ("the max sum is %3d ,from %3d to %3d\n",tags,k+1,m+1 ); }
上一篇:java.io.File类各种文件操作
下一篇:使用crossdomain.xml让Flash可以跨域传输数据
登录 注册