Untitled
unknown
c_cpp
2 years ago
216 B
6
Indexable
#include <iostream>
using namespace std;
int main()
{
const int n = 5;
const int m = 5;
int raw[n][m];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> raw[i][j];
}
}
}Editor is loading...
Leave a Comment