不能完全通过,最好情况通过67.仅供学习参考 摘要: # 题目 3166: 蓝桥杯2023年第十四届省赛真题-阶乘的和--不能完…… 题解列表 2023年04月29日 0 点赞 0 评论 692 浏览 评分:0.0
普通的写法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<set>using namespace std;const int N =10…… 题解列表 2023年04月29日 0 点赞 0 评论 457 浏览 评分:0.0
题解解解解解解解解 摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,n; cin>>a>>b>>n; cout<<…… 题解列表 2023年04月29日 0 点赞 0 评论 713 浏览 评分:0.0
就阶乘和次幂之和 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2023年04月30日 0 点赞 0 评论 530 浏览 评分:0.0
可以用结构体编写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct garde { int sum; int xuehao;};int main(){int arr[1000] = { 0 …… 题解列表 2023年04月30日 0 点赞 0 评论 555 浏览 评分:0.0
[编程入门]温度转换 摘要:一、解题思路:C参考代码:#include <stdio.h> int main() { double f, c; scanf("%lf", &f); c = 5 * (f - 32…… 题解列表 2023年04月30日 0 点赞 0 评论 439 浏览 评分:0.0
[编程入门]分段函数求值 摘要:一、解题思路:C参考代码:#include <stdio.h> int fun(int x) { if (x < 1) return x; if (x >= 1 && x < 10…… 题解列表 2023年04月30日 0 点赞 0 评论 406 浏览 评分:0.0
数组的距离 摘要:解题思路:调用了fabs()这个库函数去计算了绝对值(调用此库函数的头文件为<cmath>),不断用一个变量t去保存绝对值小的值注意事项:参考代码:#include<bits/stdc++.h>usi…… 题解列表 2023年05月01日 0 点赞 0 评论 410 浏览 评分:0.0
校门外的数 摘要:```cpp #include #include using namespace std; int main() { int n,m; cin>>n>>m; int c[1000…… 题解列表 2023年05月01日 0 点赞 0 评论 449 浏览 评分:0.0