我可以使用一些帮助。我想从一个文件中读取。该文件包含:
1x+1y+1z=5
2x+3y+5z=8
4x+0y+5z=2
我想将它存储到二维数组中。行为3,列总是为4.我只想存储整数值,在这种情况下将是1 1 1 5 2 3 5 8 4 0 5 2.如何将这些值存储到数组中?这是我试图做的,但它不起作用。谢谢你的帮助。
int main(){
fstream file;
file.open("matrix.txt", ios::in);
int arr[3][4];
// copy integers into array and display
for (int i = 0; i < 3; i++){
for(int j= 0; j < 4; j++){
file >> arr[i][j];
cout << arr[i][j];
}
}
}
答案 0 :(得分:1)
如果我在你的位置,我将首先标记你在文件中获得的每一行并切断每个数字。然后我将它存储在数组中(不要忘记将每个数字转换为整数。)
答案 1 :(得分:1)
首先需要从每个等式中提取数字,然后将它们存储在数组中。我将告诉你如何提取这些数字,其余的是微不足道的我猜。
#include <iostream>
#include <string>
using namespace std;
void getNumbers(string str, int&x, int&y, int& z)
{
string X, Y, Z;
size_t idx = str.find("x");
size_t idy = str.find("y");
size_t idz = str.find("z");
X = str.substr(0, idx);
Y = str.substr(idx+1, idy-(idx+1));
Z = str.substr(idy+1, idz-(idy+1));
x = stoi(X);
y = stoi(Y);
z = stoi(Z);
}
int main()
{
string line("2x+82y-12z=5");
int x(0), y(0), z(0);
getNumbers(line,x,y,z);
cout << line << endl;
cout << x << " " << y << " " << z << endl;
return 0;
}
结果是
2x+82y-12z=5
2 82 -12