?? ch12.4.02.c
字號:
#include <iterator>
#include <algorithm>
#include <iostream.h>
// #include <iostream>
/**
**
stanl@john:d.12 338 : xsh32 ch12.4.02.c
stanl@john:d.12 339 : a.out
0 1 1 2 3 5 8
0 1 1 2 3 5 8 stanl@john:d.12 340 :
**
**/
int main()
{
copy( istream_iterator< int >( cin ),
istream_iterator< int >(),
ostream_iterator< int >( cout, " " ));
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -