二级C语言-自定义函数 摘要:解题思路: 采用递归求解注意事项: 包含#include<iomanip>以保证输出4位小数;参考代码:#include<iostream> using namespace std; #inclu…… 题解列表 2024年08月10日 0 点赞 0 评论 463 浏览 评分:7.0
计算素数和(用C++) 摘要:参考代码:#include<iostream> using namespace std; bool isprime(int x) { int count = 0; for (int i …… 题解列表 2024年08月10日 0 点赞 0 评论 368 浏览 评分:7.3
2^k进制数:组合数 摘要:解题思路:组合数注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; long long c(int n, int …… 题解列表 2024年08月09日 0 点赞 0 评论 308 浏览 评分:0.0
最后一个点卡数组小于k和多组数据 摘要:#include<bits/stdc++.h> using namespace std; int main() { int t,k; while(cin>>t>>k) …… 题解列表 2024年08月09日 0 点赞 0 评论 190 浏览 评分:0.0
不用考虑斜率不存在和分母为0的方法——余弦定理 摘要:解题思路:参考代码:#include<bits/stdc++.h> using namespace std; #define PI 3.14159265358979323846 void sol…… 题解列表 2024年08月09日 0 点赞 0 评论 247 浏览 评分:0.0
编写题解 1027: [编程入门]自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int y(int a,int b) { for(int i=min(a,b);i>…… 题解列表 2024年08月09日 0 点赞 0 评论 541 浏览 评分:0.0
dfs+判断数组解决排列 摘要:解题思路:注意事项:坑:1.题目空了一格输出,输出一个就换行2.字典序输出参考代码:#include<bits/stdc++.h>const int N=10;//题目默认字典序了strcmpint …… 题解列表 2024年08月09日 0 点赞 0 评论 284 浏览 评分:0.0
最暴力的写法QwQ 摘要:#include<bits/stdc++.h> using namespace std; void solve() { int m,cnt=0; cin>>m; for(int i=…… 题解列表 2024年08月09日 1 点赞 0 评论 205 浏览 评分:0.0
最简单的组合数问题(递推法) 摘要:#include<bits/stdc++.h> using namespace std; const int N=2010; int c[N][N]; void init() { for…… 题解列表 2024年08月09日 0 点赞 0 评论 202 浏览 评分:0.0
自定义函数之整数处理,解决对一半的问题 摘要:解题思路: 定义一个含有10个元素的数组,找出其中最大值与最小值的编号,分别记为min,max;按要求进行交换,同时考虑特殊情况的处理。注意事项: 如何解决部分测试结果不正确的问题?特殊情况1:当最大…… 题解列表 2024年08月09日 0 点赞 0 评论 297 浏览 评分:9.9