//土尔逊Torson 编写于2023/05/18 #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstdio> using namespace std; struct Matrix { int matrix[10][10]; int row, col; Matrix(int r,int c) : row(r), col(c) {} }; Matrix Multiply(Matrix x, Matrix y) { Matrix answer(x.row, y.col); for (int i ...