编程题#1
来源: POJ (Coursera声明:在POJ上完成的习题将不会计入Coursera的最后成绩。)
注意: 总时间限制: 1000ms 内存限制: 65536kB
描述
下面的程序输出结果是:
1 2 6 7 8 9
请填空:
#include <iostream> #include <iterator> #include <set> using namespace std; int main() { int a[] = {8,7,8,9,6,2,1}; // 在此处补充你的代码 ostream_iterator<int> o(cout," "); copy( v.begin(),v.end(),o); return 0; }
输入
无
输出
1 2 6 7 8 9
样例输入
无
样例输出
1 2 6 7 8 9
1 #include <iostream> 2 #include <iterator> 3 #include <set> 4 using namespace std; 5 int main() { 6 int a[] = {8,7,8,9,6,2,1}; 7 // 在此处补充你的代码 8 set<int> v(a, a+7); 9 ostream_iterator<int> o(cout," "); 10 copy( v.begin(),v.end(),o); 11 return 0; 12 }
时间: 2024-10-11 03:05:37