2020-C++高级程序设计-C++ 输入重定向到文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include<iostream>
#include<string>
#include<sstream>
#include<fstream>
using namespace std;
int main() {
string str1;
string str2;
getline(cin, str1);
getline(cin, str2);
string str = str1 + "\n" + str2;
std::ofstream f("D:\\answer\\answer.txt", std::ios::app);
f << str << std::endl;
f.close();
}

1. 考试注意事项

  1. 多次扩容,嵌套操作
  2. int输入可能导致内部 long long

2020-C++高级程序设计-C++ 输入重定向到文件
https://spricoder.github.io/2020/07/01/2020-C-plus-plus-advanced-programming/2020-C-plus-plus-advanced-programming-C++%20%E8%BE%93%E5%85%A5%E9%87%8D%E5%AE%9A%E5%90%91%E5%88%B0%E6%96%87%E4%BB%B6/
作者
SpriCoder
发布于
2020年7月1日
许可协议