123
This commit is contained in:
32
STLPORT/test/regression/partsum2.cpp
Normal file
32
STLPORT/test/regression/partsum2.cpp
Normal file
@@ -0,0 +1,32 @@
|
||||
// STLport regression testsuite component.
|
||||
// To compile as a separate example, please #define MAIN.
|
||||
#include <iterator>
|
||||
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include <functional>
|
||||
#include <numeric>
|
||||
|
||||
#ifdef MAIN
|
||||
#define partsum2_test main
|
||||
#endif
|
||||
|
||||
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||||
using namespace std;
|
||||
#endif
|
||||
int partsum2_test(int, char**)
|
||||
{
|
||||
cout<<"Results of partsum2_test:"<<endl;
|
||||
vector <int> v1(5);
|
||||
iota(v1.begin(), v1.end(), 1);
|
||||
vector <int> v2(v1.size());
|
||||
partial_sum(v1.begin(), v1.end(), v2.begin(), multiplies<int>());
|
||||
ostream_iterator <int> iter(cout, " ");
|
||||
copy(v1.begin(), v1.end(), iter);
|
||||
cout << endl;
|
||||
copy(v2.begin(), v2.end(), iter);
|
||||
cout << endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user