2881: 图像相似度 摘要:解题思路:注意事项:参考代码:m,n = map(int,input().split())la = []lb = []for i in range(m): s = list(map(int,in…… 题解列表 2024年08月04日 0 点赞 0 评论 325 浏览 评分: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 评论 208 浏览 评分:0.0
判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x; scanf("%d",&x); if(0<x && x<=1…… 题解列表 2024年08月04日 0 点赞 0 评论 341 浏览 评分: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 评论 187 浏览 评分: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 评论 162 浏览 评分: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 评论 202 浏览 评分: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 评论 399 浏览 评分: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 评论 404 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ int x; int y=0; scanf("%d",&x); if(x<1){ y=x; } if((x<10&&x>1)||x…… 题解列表 2024年08月04日 0 点赞 0 评论 476 浏览 评分:0.0
2882: 矩阵归零消减序列和 摘要:解题思路:注意事项:参考代码:n = int(input())l = []row = []cul = []for i in range(n): s = list(map(int,input().…… 题解列表 2024年08月04日 0 点赞 0 评论 190 浏览 评分:0.0