最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); int m =(a<b?a:b); while …… 题解列表 2023年11月12日 0 点赞 0 评论 194 浏览 评分:0.0
求最大公约数最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,m,n,i,j; scanf("%d %d",&a,&b); m=a<b?b:…… 题解列表 2023年11月12日 0 点赞 0 评论 143 浏览 评分:0.0
我的很简洁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdbool.h>bool is_prime(int n) { if (n <= 1) { …… 题解列表 2023年11月12日 0 点赞 0 评论 189 浏览 评分:0.0
Hello, World!Hello, World!Hello, World! 摘要:解题思路: 注意事项:注意要写成Hello, World!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout…… 题解列表 2023年11月12日 0 点赞 0 评论 171 浏览 评分:0.0
成绩排序(Python实现) 摘要:解题思路:注意事项:参考代码:def sort_students(students): students.sort(key=lambda x: (x[2], x[0], x[1])) re…… 题解列表 2023年11月12日 0 点赞 0 评论 297 浏览 评分:0.0
矩阵交换行(二维数组)(简单易懂) 摘要:解题思路:1. 引入必要的头文件 `stdio.h` 和 `math.h`。2. 定义一个大小为 5x5 的整型数组 `arr`,用于存储输入的数据。3. 定义两个变量 `i` 和 `j`,用于在循环…… 题解列表 2023年11月12日 0 点赞 0 评论 504 浏览 评分:0.0
图像相似度(c语言) 摘要:解题思路:1. 导入所需的头文件,其中包括<stdio.h>和<math.h>,用于输入输出和数学计算。2. 声明变量m、n、i、j,以及两个二维数组a和b,分别表示矩阵的大小和内容。3. 使用sca…… 题解列表 2023年11月12日 0 点赞 0 评论 416 浏览 评分:0.0
题解 2822: 求分数序列和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double a=1.0,b=2.0,c=0;…… 题解列表 2023年11月12日 0 点赞 0 评论 219 浏览 评分:0.0
题解 2823: 计算分数加减表达式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double c=0; cin>>n; for…… 题解列表 2023年11月12日 0 点赞 0 评论 174 浏览 评分:0.0
题解 3011: 余数相同问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n=2,a,b,c; cin>>a>>b>>c; w…… 题解列表 2023年11月12日 0 点赞 0 评论 185 浏览 评分:0.0