Posts by Thales Caruso • 1 point
1 post
-
-1
votes2
answers138
viewsQ: Problem in realizing the sum of the lines of a two-dimensional matrix C++
include include using namespace Std; int main() { srand(time(0)); int bid[3][3]; int impar = 0; for (int x = 0; x < 3; x++) { for (int y = 0; y < 3; y++) { bid[x][y] = rand() % (386 - 0 + 1) +…