蓝桥杯算法提高-矩阵转置-题解(C语言代码) 摘要: #include int main(){ int i,j,m,n,t,k; int a[20][20]; scanf("%d %d",&m,&n)…… 题解列表 2020年04月05日 0 点赞 1 评论 1050 浏览 评分:8.0
蓝桥杯算法提高-矩阵转置-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20][20]; int n,m,i,j,temp,max; scanf("%d%d",&n,&m)…… 题解列表 2020年12月01日 0 点赞 0 评论 443 浏览 评分:6.0
蓝桥杯算法提高-矩阵转置 摘要:解题思路:写出一个二维数组,然后将数组的行与列调换注意事项:参考代码:#include <stdio.h>int main(){ int n, m,i,j; scanf("%d%d", &n, &m)…… 题解列表 2021年05月15日 0 点赞 0 评论 384 浏览 评分:6.5
c语言写矩阵转置 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<malloc.h>void swap(){ int…… 题解列表 2021年06月10日 0 点赞 0 评论 220 浏览 评分:0.0