标记法(挺好懂得)(虽然我是菜鸟) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include<math.h> int main(){ int x[5][5],i,j; for(i=0;i<5;i++) { fo…… 题解列表 2022年12月01日 0 点赞 0 评论 230 浏览 评分:0.0
编写题解 2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int max[5]={0}; int min[5]={0}; int i=0,j=0; …… 题解列表 2022年10月25日 0 点赞 0 评论 247 浏览 评分:0.0
计算鞍点(Java) 摘要:解题思路:判断该点是否在行与列上有重复值,然后再分别判断是否在行上为最大值,若不是列就不需要判断,若是再判断列注意事项://理清思路参考代码:package arrLast; //题目 2880: …… 题解列表 2024年02月03日 0 点赞 0 评论 145 浏览 评分:0.0
编写题解 2880: 计算鞍点 摘要:解题思路:找到每一行的最大值后,立即判断是不是所在列的最小值。注意事项:参考代码:#include <stdio.h>int main(){ int arr[5][5] = { 0 }; for (i…… 题解列表 2024年02月18日 0 点赞 0 评论 320 浏览 评分:0.0
2880: 计算鞍点 摘要:参考代码:arr, arr2 = [], [] for _ in range(5): p1 = list(map(int, input().split())) arr.appen…… 题解列表 2024年03月28日 0 点赞 0 评论 535 浏览 评分:0.0
计算鞍点,简单易懂 摘要:解题思路:注意事项:参考代码:num = [list(map(int,input().split())) for _ in range(5)] row,col = [],[] sum = floa…… 题解列表 2024年04月08日 0 点赞 0 评论 205 浏览 评分:0.0
计算鞍点(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define n 5int main(){ int arr[100][100] = {0}; int row = …… 题解列表 2022年11月06日 0 点赞 0 评论 310 浏览 评分:0.0
优质题解,有解析 摘要:解题思路:注意事项:参考代码:# 读取输入矩阵 matrix = [] for _ in range(5): row = list(map(int, input().split())) …… 题解列表 2024年08月01日 0 点赞 0 评论 269 浏览 评分:0.0
2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:rowm = []l = []for i in range(5): s = list(map(int,input().split())) l.append(s…… 题解列表 2024年08月04日 0 点赞 0 评论 208 浏览 评分:0.0
2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,sum=0;int main(){…… 题解列表 2024年08月29日 1 点赞 0 评论 340 浏览 评分:0.0