1 Star 1 Fork 0

zeyes/cp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
arrfun4.cpp 684 Bytes
一键复制 编辑 原始数据 按行查看 历史
zeyes 提交于 2015-07-10 10:33 +08:00 . 2015.07.10 10:33
#include <iostream>
const int ArSize = 8;
int sum_arr(const int *bgein, const int * end1);
int main()
{
using namespace std;
int cookies[ArSize] = {1, 2, 4, 8, 16, 32, 64, 128};
int sum = sum_arr(cookies, cookies + ArSize);
cout << "Total cookies eaten: " << sum << endl;
sum = sum_arr(cookies, cookies + 3);
cout << "First three eaters ate " << sum << " cookies.\n";
sum = sum_arr(cookies + 4, cookies + 8);
cout << "Last four eaters ate " << sum << " cookies.\n";
return 0;
}
int sum_arr(const int * begin, const int *end1)
{
const int *pt;
int total = 0;
for(pt = begin; pt != end1; pt++)
total += *pt;
return total;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zeyes/cp.git
git@gitee.com:zeyes/cp.git
zeyes
cp
cp
master

搜索帮助