题解 2896: 二维数组右上左下遍历

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

二维数组对角线遍历——找规律

摘要:解题思路:找行列之间坐标的规律,发现行列坐标之和成递增趋势,且输出顺序为先行后列(从行为0开始循环)注意事项:参考代码:#include<stdio.h>#include<stdli……

找规律找规律

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; cin &……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, m, i, j, k,a[100][10……