KDDA十三尧十三
KDDA十三尧十三
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
KDDA十三尧十三的博客
全部文章
(共3篇)
题解 | #八进制#
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main(void) { int n; ve...
矩阵
数学模拟
2021-04-15
0
475
计算机复试--对称矩阵
#include<iostream> using namespace std; #define max_len 101 int arr[max_len][max_len]; bool sym_matrix(int a...
矩阵
数学模拟
2021-03-23
1
589
计算机复试--矩阵最大值
#include #include using namespace std; //此题关键在于存储每行第一个最大数的行列值 typedef struct Matrix { int line;//行 int row;//列 int value;//值 }; int main(v...
矩阵
数学模拟
查找
2021-03-21
3
643