私は の初心者でC++
、 order の行列を入力して表示するプログラムを書きたいと思っていますi * j
。以下のプログラムを書いたのですが、うまくいきません。
親切に私を案内してください。
アクセス方法が間違っているとか、そういうこともあると思います。
プログラムは次のとおりです。
#include <iostream>
using namespace std;
int main() {
int i = 0,j = 0;
cout << "Enter no of rows of the matrix";
cin >> i;
cout << "Enter no of columns of the matrix";
cin >> j;
float l[i][j];
int p = 0, q = 0;
while (p < i) {
while (q < j) {
cout << "Enter the" << p + 1 << "*" << q + 1 << "entry";
cin >> l[p][q];
q = q + 1;
}
p = p + 1;
q = 0;
}
cout << l;
}