#include <iostream> #include <fstream> //ofstream类的头文件 using namespace std; int main() { int n; cin>>n; ofstream mycout("temp.txt"); mycout<<n<<endl; mycout.close(); return ; }