?? stl_a1.cpp
字號(hào):
// STL_A1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <vector>
#include <algorithm>
#include <iterator>
#include <iostream>
#include <fstream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
if(argc>2)
ofstream(argv[2], ios::out|ios::binary)<<ifstream(argv[1], ios::in |ios::binary).rdbuf();
else if(argc>1)
cout<<ifstream(argv[1], ios::in |ios::binary).rdbuf();
else
cout<<cin.rdbuf();
return 0;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -