問題描述
下面的程式輸出結果是:
1 2 6 7 8 9
請填空:
#include
#include
#include
using
namespace
std;
int main() ;
// 在此處補充你的**
ostream_iterator o(cout," ");
copy( v.begin(),v.end(),o);
return
0;}
輸入無
輸出
1 2 6 7 8 9
樣例輸入
無
樣例輸出
1 2 6 7 8 9
提示
這道題就一句話,如果不熟練的話其實還是不好想的
原始碼
#include
#include
#include
using
namespace
std;
int main()
; //在此處補充你的**
set v(a, a+7);//關聯容器,且不允許相同元素
ostream_iterator o(cout, "");//放到輸出流的時候,每放乙個整數,就末尾新增乙個""中的內容
copy(v.begin(), v.end(), o);//向量v中的資料通過流迭代器o放到o輸出流中
return
0;}
多型與虛函式 程式設計題 1 C 程式設計第6周
注意 總時間限制 1000ms 記憶體限制 65536kb 下面程式的輸出結果是 a fun c do 請填空 123 4567 89 1011 1213 1415 1617 1819 2021 2223 2425 2627 2829 3031 32 include using namespace ...
STL程式設計題3(C 程式設計第9周)
描述 現有一整數集 允許有重複元素 初始為空。我們定義如下操作 add x 把x加入集合 del x 把集合中所有與x相等的元素刪除 ask x 對集合中元素x的情況詢問 對每種操作,我們要求進行如下輸出。add 輸出操作後集合中x的個數 del 輸出操作前集合中x的個數 ask 先輸出0或1表示x...
STL程式設計題1
問題描述 下面的程式輸出結果是 1 2 6 7 8 9 按從小到大的順序,且沒有重複的 include include 迭代器 include set關聯容器 using namespace std int main 在此處補充你的 關聯容器,不允許有相同元素 setv a,a 7 類模板ostre...