摘要:
ofstream(输出流)是从内存到硬盘,ifstream(输入流)是从硬盘到内存。 //#include #include using namespace std; int main() { ifstream in; ofstream out; in.open("a.txt"); out.open("b.txt"); int x, y, z; ... 阅读全文
posted @ 2018-01-09 17:52
任重道远-HSY
阅读(167)
评论(0)
推荐(0)
2018年1月9日