抱歉,我是 C++ 的新手,似乎无法理解读取 txt 文件和编写文件的基本概念。我有一个程序,目前只提示用户,然后在读取数据后在命令行上提供输出。但我想让它读取一个文件,并用它的输出创建一个文件
到此为止
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout << "Enter number of names \n";
int a;
cin >> a;
string * namesArray = new string[a];
for( int i=0; i<a; i++) {
string temp;
cin >> temp;
namesArray[i] = temp;
}
for( int j=0; j<a; j++) {
cout << "hello " << namesArray[j] << "\n";
}
return 0;
}
谢谢大家..