⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch12.4.02.c

📁 C++ Primer的第三版结合了Stanley Lippman的实践经验和Josée Lajoie对于ANSI/ISO标准C++的深入理解。这本指导书的第三版已经被重新改写过
💻 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 + -