//习题11.3,用accumulate统计vector<int>容器对象中的元素之和 # include <iostream> # include <vector> # include <numeric> using namespace std; int main() { int ival; vector<int> ivec; //读入int型数据并存储到vector对象中,直至遇到文件结束符 cout << "Enter some integers(Ctrl+Z to end):" << endl; while (cin >> ival) { ivec.push_back(ival); } //使用accumulate函数统计vector对象中的元素之和并输出结果 cout << "summation of elements in the vector:" << accumlate(ivec.begin(),ivec.end(),0) << endl; return 0; }
1)看了STL中的泛型算法{本章没有看完}
2)开发windows程序有三种方法:a.用windows API b.MFC类库 c.MFCAppWizard
3)windows整个消息过程,如孙鑫的《VC》那本书,窗口消息,注册消息,消息处理之类的{很久没看,忘记了}
4)对容器有了解了,《C++ Primer》里有两章讲的是容器,分别是顺序容器[vector,deque,list]和关联容器[pair,set,multiset]
posted on 2009-12-14 00:45 wolflion 阅读(215) 评论(0) 编辑 收藏 举报