2206: 素数求和 摘要: #include using namespace std; inline int ss_(int a);//内联函数减少运行时间 int main() …… 题解列表 2022年11月16日 0 点赞 0 评论 289 浏览 评分:0.0
分段函数 二级C语言 摘要:解题思路: 注意事项:保留两位,double类型。用到平方根函数sqrt()、绝对值函数fabs()、幂函数pow()。参考代码:#include<stdio.h> #include<math.h>…… 题解列表 2022年11月17日 0 点赞 0 评论 153 浏览 评分:0.0
汪汪和打针 摘要:解题思路:注意事项:有点漏洞,不过可以过这题参考代码:#include<iostream>using namespace std;int m = 120, l = 100;///定义疫苗的价钱int …… 题解列表 2022年11月17日 0 点赞 0 评论 198 浏览 评分:0.0
输入输出练习之输出图案 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a; cin >> a; for (int…… 题解列表 2022年11月17日 0 点赞 0 评论 213 浏览 评分:0.0
[编程入门]求和训练题解(C语言) 摘要:解题思路:注意事项:参考代码:#includeint main() { int a,b,c; //定义题目所给3个变量 float Sa,Sb,Sc; …… 题解列表 2022年11月17日 0 点赞 0 评论 158 浏览 评分:0.0
C语言 自定义函数之字符类型统计& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 40int main(){ void scanf_s…… 题解列表 2022年11月17日 0 点赞 0 评论 183 浏览 评分:0.0
2901: 查找特定的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d",&n);//输入 int arr[10001]={0}…… 题解列表 2022年11月17日 0 点赞 0 评论 217 浏览 评分:0.0
2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int day; int arr1[8]={0}; int arr2[8]={0};//两个数组来装数…… 题解列表 2022年11月17日 0 点赞 0 评论 250 浏览 评分:0.0
1275:吹哨传球 摘要:```python n, m = map(int, input().split()) def C(x, y): a1 = 1 for i in range(1, y+1):…… 题解列表 2022年11月17日 0 点赞 0 评论 270 浏览 评分:0.0
动态规划—01背包复习 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define max(x,y) x>y?x:y int v[60] = { 0 };//物品价值 int w[60] = …… 题解列表 2022年11月17日 0 点赞 0 评论 193 浏览 评分:0.0