对于这个问题,直接用最简单的方法 摘要:参考代码:#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 评论 365 浏览 评分: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 评论 361 浏览 评分: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 评论 190 浏览 评分: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 评论 155 浏览 评分: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 评论 181 浏览 评分:0.0
判断一个数能否同时被3和5整除 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); if(n>-1000000 …… 题解列表 2024年08月04日 0 点赞 0 评论 444 浏览 评分:9.9
判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x; scanf("%d",&x); if(0<x && x<=1…… 题解列表 2024年08月04日 0 点赞 0 评论 326 浏览 评分: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 评论 197 浏览 评分:0.0
整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int x,y; scanf("%d %d",&…… 题解列表 2024年08月04日 0 点赞 1 评论 549 浏览 评分: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 评论 315 浏览 评分:0.0