题解 2823: 计算分数加减表达式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double c=0; cin>>n; for…… 题解列表 2023年11月12日 0 点赞 0 评论 181 浏览 评分:0.0
计算鞍点(c语言)(有注释)(简单易懂) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int arr[5][5]; int i,…… 题解列表 2023年11月12日 0 点赞 0 评论 518 浏览 评分:8.4
题解 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 评论 221 浏览 评分:0.0
1014: [编程入门]阶乘求和(Java代码) 摘要:解题思路: 有点动态规划的意思,新的阶乘值依赖于上一次计算的阶乘值。参考代码:import java.util.Scanner; public class Main { public sta…… 题解列表 2023年11月12日 0 点赞 0 评论 271 浏览 评分:9.9
图像相似度(c语言) 摘要:解题思路:1. 导入所需的头文件,其中包括<stdio.h>和<math.h>,用于输入输出和数学计算。2. 声明变量m、n、i、j,以及两个二维数组a和b,分别表示矩阵的大小和内容。3. 使用sca…… 题解列表 2023年11月12日 0 点赞 0 评论 424 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr1[20] = { '0' }; char arr2[20] = {…… 题解列表 2023年11月12日 0 点赞 0 评论 180 浏览 评分:2.0
萌新出品:2749: Hello, World! 摘要:参考代码:#include<iostream>using namespace std;int main(){ cout <<"Hello, World!"; return 0;}c完记的给好评…… 题解列表 2023年11月12日 0 点赞 0 评论 853 浏览 评分:9.0
矩阵交换行(二维数组)(简单易懂) 摘要:解题思路:1. 引入必要的头文件 `stdio.h` 和 `math.h`。2. 定义一个大小为 5x5 的整型数组 `arr`,用于存储输入的数据。3. 定义两个变量 `i` 和 `j`,用于在循环…… 题解列表 2023年11月12日 0 点赞 0 评论 519 浏览 评分:0.0
2768: 与圆相关的计算 摘要:解题思路:注意事项:a要定义成小数参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,c,d; …… 题解列表 2023年11月12日 0 点赞 0 评论 302 浏览 评分:9.9
原神andc++萌新出品 题解:1267: A+B Problem 摘要:原神 启动!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码: #include<iostream>using namespace std;int main(){ …… 题解列表 2023年11月12日 0 点赞 0 评论 192 浏览 评分:8.0