2885: 矩阵转置 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split())l = []for i in range(n): s = list(map(int,input().sp…… 题解列表 2024年08月04日 0 点赞 0 评论 219 浏览 评分: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 评论 246 浏览 评分:0.0
判断一个数能否同时被3和5整除 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); if(n>-1000000 …… 题解列表 2024年08月04日 0 点赞 0 评论 512 浏览 评分:9.9
判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x; scanf("%d",&x); if(0<x && x<=1…… 题解列表 2024年08月04日 0 点赞 0 评论 388 浏览 评分: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 评论 266 浏览 评分:0.0
整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int x,y; scanf("%d %d",&…… 题解列表 2024年08月04日 0 点赞 1 评论 672 浏览 评分:10.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 评论 383 浏览 评分:0.0
2880: 计算鞍点 摘要:解题思路:注意事项:参考代码:rowm = []l = []for i in range(5): s = list(map(int,input().split())) l.append(s…… 题解列表 2024年08月04日 0 点赞 0 评论 307 浏览 评分:0.0
奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char ch; ch=getchar(); int num=ch; …… 题解列表 2024年08月04日 1 点赞 0 评论 422 浏览 评分:10.0
判断数正负 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int N; scanf("%d",&N); …… 题解列表 2024年08月04日 1 点赞 0 评论 851 浏览 评分:9.9