CoralSwallow
CoralSwallow
全部文章
分类
归档
标签
去牛客网
登录
/
注册
CoralSwallow的博客
全部文章
(共2篇)
题解 | 矩阵转置
#include <iostream> using namespace std; string MAT1; int MAT[105][105]; int row = 1, col, col_temp; int main() { getline(cin, MAT1); fo...
2026-02-03
0
7
题解 | 矩阵和向量的点积
#include <iostream> using namespace std; int MAT[105][105]; int VEC[105]; int ANS[105]; int row = 1, col,col_temp; int sum; int Stack; string MA...
2026-02-03
0
8