如何使用C++从txt文件中读取n个值
How to read n values from txt file using C++
我有以下 C++ 代码,我通过这些代码从 .txt 文件中读取值
能否请您帮助我改进代码,以便我不仅可以读取 14 个值,还可以从 .txt 中读取 n 个值
//reading from text file
static std::vector<double> vec;
double a[14]; //values got read from txt file
int i = 0;
void readDATA()
{
double value;
std::ifstream myFile;
myFile.open("filename.txt", std::ios::app);
if (myFile.is_open())
{
std::cout << "File is open." << std::endl;
while (myFile >> value)
{
vec.push_back(value);
std::cout << "value is " << value << std::endl;
a[i] = value;
std::cout << "a" << i << "=" << a[i] << std::endl;
i = i + 1;
}
myFile.close();
}
else
std::cout << "Unable to open the file";
}
.txt 文件看起来像
0 0 40 45 15
0 1 40 -45 10
0 0 180 90 15
vec.push_back(value);
此处,值已添加到 vec
,您无需再次将它们添加到 a
。您只需键入 vec[n]
即可访问这些值。例如,
std::cout<<vec[2]; //40
std::cout<<vec[4]; //15
而且您可以将任意数量的元素推回向量,因此您真的不需要声明另一个数组或双精度数。
我有以下 C++ 代码,我通过这些代码从 .txt 文件中读取值
能否请您帮助我改进代码,以便我不仅可以读取 14 个值,还可以从 .txt 中读取 n 个值
//reading from text file
static std::vector<double> vec;
double a[14]; //values got read from txt file
int i = 0;
void readDATA()
{
double value;
std::ifstream myFile;
myFile.open("filename.txt", std::ios::app);
if (myFile.is_open())
{
std::cout << "File is open." << std::endl;
while (myFile >> value)
{
vec.push_back(value);
std::cout << "value is " << value << std::endl;
a[i] = value;
std::cout << "a" << i << "=" << a[i] << std::endl;
i = i + 1;
}
myFile.close();
}
else
std::cout << "Unable to open the file";
}
.txt 文件看起来像
0 0 40 45 15
0 1 40 -45 10
0 0 180 90 15
vec.push_back(value);
此处,值已添加到 vec
,您无需再次将它们添加到 a
。您只需键入 vec[n]
即可访问这些值。例如,
std::cout<<vec[2]; //40
std::cout<<vec[4]; //15
而且您可以将任意数量的元素推回向量,因此您真的不需要声明另一个数组或双精度数。