#include <vector>. void f( const std::vector< int > &c) {. std::for_each(c.end(), c.begin(), []( int i) { std::cout << i; });. } ...
確定! 回上一頁