- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
#include <numeric>
#include <algorithm>
#include <iostream>
#include <functional>
#include <boost/iterator/counting_iterator.hpp>
int main()
{
std::cout << std::accumulate(boost::make_counting_iterator(2), boost::make_counting_iterator(8), 1, std::multiplies<int>());
return 0;
}
guest 10.04.2009 16:01 # 0
А что, функциональный стиль вычисления факториала 8 :)
Нам нравится.
guest 10.08.2009 20:56 # 0
guest 13.04.2010 13:41 # +1.2
xXx_totalwar 13.04.2010 15:43 # 0
guest 26.09.2009 19:31 # 0