+ 2
Array problem
See commented lines in code https://code.sololearn.com/cz5WQYa29Q0K/?ref=app
2 Answers
+ 1
2nd row index value is 1 , not 2. so use
for(int i=1; i<2; i++){
for(int j=0; j<3; j++)
cin>>arrr[i][j];
}
+ 1
Thank I got it
Jayakrishnađźđł