2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:rowm = []l = []for i in range(5): s = list(map(int,input().split())) l.append(s…… 题解列表 2024年08月04日 0 点赞 0 评论 215 浏览 评分:0.0
2881: 图像相似度 摘要:解题思路:注意事项:参考代码:m,n = map(int,input().split())la = []lb = []for i in range(m): s = list(map(int,in…… 题解列表 2024年08月04日 0 点赞 0 评论 299 浏览 评分:0.0
2883: 矩阵加法 摘要:解题思路:注意事项:参考代码:m,n = map(int,input().split())la = []lb = []for i in range(m): s = list(map(int,in…… 题解列表 2024年08月04日 0 点赞 0 评论 185 浏览 评分:0.0
判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x; scanf("%d",&x); if(0<x && x<=1…… 题解列表 2024年08月04日 0 点赞 0 评论 274 浏览 评分:0.0
2884: 矩阵乘法 摘要:解题思路:注意事项:参考代码:n,m,k= map(int,input().split())la = []lb = []for i in range(n): s = list(map(int,i…… 题解列表 2024年08月04日 0 点赞 0 评论 167 浏览 评分:0.0
2885: 矩阵转置 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split())l = []for i in range(n): s = list(map(int,input().sp…… 题解列表 2024年08月04日 0 点赞 0 评论 143 浏览 评分:0.0
2937: 短信计费 摘要:```cpp #include using namespace std; int jf(int n,int a[]){ double s=0; for(int i=0;in; int…… 题解列表 2024年08月04日 0 点赞 0 评论 159 浏览 评分:0.0
2886: 图像旋转 摘要:解题思路:注意事项:参考代码:n,m= map(int,input().split())l = []for i in range(n): s = list(map(int,input().spl…… 题解列表 2024年08月04日 0 点赞 0 评论 337 浏览 评分:0.0
对于这个问题,直接用最简单的方法 摘要:参考代码:#include<stdio.h>int main(){ double F; double c=0; scanf("%lf",&F); c=5*(F-32)/9; printf("c=%0.…… 题解列表 2024年08月04日 1 点赞 0 评论 333 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ int a=0; int n[3]; for(int i=0;i<3;i++){ scanf("%d",&n[i]); } for…… 题解列表 2024年08月04日 4 点赞 0 评论 867 浏览 评分:0.0