1030: [编程入门]二维数组的转置 摘要:解题思路:解题思路:声明两个数组a[3][3],b[3][3],后者存放转置后的元素。先用for循环嵌套输入a数组元素,接着(关键点)是转置:我们把二维数组看成矩阵,或者说坐标系,这样就很容易想到,行…… 题解列表 2024年03月13日 0 点赞 0 评论 160 浏览 评分:0.0
一行输入,简单简单入门 摘要:解题思路:注意事项:参考代码:three_list = [list(map(int, input().split())) for _ in range(3)]for i in range(3): …… 题解列表 2024年03月04日 0 点赞 0 评论 104 浏览 评分:9.9
1030: [编程入门]二维数组的转置 用到1024题 c语言代码 简单 容易 摘要:解题思路:我写1024题的#include <stdio.h> #include <stdlib.h> int main(void){ int a[3][3]; int i,j; …… 题解列表 2024年02月14日 0 点赞 0 评论 84 浏览 评分:9.9
编写题解 1030: [编程入门]二维数组的转置 摘要:解题思路:转置是线性代数里面的知识,就是把行变为列。如题第一列1 4 7变为第一行,以此类推;注意事项:参考代码:#include<stdio.h>int main(){ int i,j,a[3][3…… 题解列表 2024年02月07日 0 点赞 0 评论 53 浏览 评分:0.0
两种方法实现二维数组的转置 摘要:解题思路:可通过两种方式求解此题方式1:通过观察得知,此九宫格二维数组只有6个数需要调换,即2和4,3和7,6和8,故只需要用swap函数两两一组调换3次即可方式2:设一个中间数组用于接收初始数组,把…… 题解列表 2024年01月18日 0 点赞 0 评论 122 浏览 评分:0.0
转置嘛,就是互换行列呗 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int arr[3][3]; int *p = &arr[…… 题解列表 2023年12月26日 0 点赞 0 评论 52 浏览 评分:0.0
以自己理解写的,比较简单 摘要:解题思路:注意事项:尽量在b[y][x] = a[y][x]时把a[x][y]改掉参考代码:#include<stdio.h>int main(){ int x, y; int a[3…… 题解列表 2023年12月17日 0 点赞 0 评论 43 浏览 评分:9.9
C++二维数组装置,可不限与3*3大小 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int arr[3][3]; int i,j; for (i=0;i…… 题解列表 2023年12月14日 0 点赞 0 评论 37 浏览 评分:0.0
c二维数组的转置 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],b[3][3]; int i,j; for(i=0;i<3;i++) …… 题解列表 2023年11月26日 0 点赞 0 评论 54 浏览 评分:0.0
[编程入门]二维数组的转置(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,j,t; for(i=0;i<3;i++){ for(j=…… 题解列表 2023年11月19日 0 点赞 0 评论 112 浏览 评分:0.0