用c++写一个写代码文档的小程序
时间: 2024-05-07 07:22:37 浏览: 173
文档编辑程序源代码.rar_C++源代码_exe软件_字体小程序_文字编辑_文档编写源码
以下是一个用C++编写的简单的写代码文档的小程序,可以将代码保存为文本文件并添加注释。
```c++
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
string filename;
string code;
string comment;
ofstream file;
//获取文件名
cout << "请输入保存的文件名:";
getline(cin, filename);
//获取代码
cout << "请输入要保存的代码:\n";
getline(cin, code);
//获取注释
cout << "请输入代码的注释:\n";
getline(cin, comment);
//打开文件并写入内容
file.open(filename);
file << "//" << comment << "\n" << code << endl;
file.close();
cout << "代码已保存到文件:" << filename << endl;
return 0;
}
```
使用方法:
1. 运行程序。
2. 输入要保存的文件名。
3. 输入要保存的代码。
4. 输入代码的注释。
5. 程序将会把代码和注释保存到文件中。
阅读全文