题解列表

筛选

3041: 最大子矩阵 应该能看懂吧

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量n和三个二维数组a, b, c,以及答案变量ans in……

大神老白1390/////////

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int gys(int a,int b){ if (a==b) { return a; } else ……

通用的思维写出的

摘要:解题思路:注意事项:参考代码: public class Test {     public static void main(String[] args) {         Scanner ……

新手必看,俩for解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() {    int n,i,j,h,l; scanf("%d",&n); int a[n][n]; for(i=0;……