1332: 津津的储蓄计划 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m=0,y=0; double sum=0.0; for(int i=0;i<12;i++) { …… 题解列表 2024年07月18日 0 点赞 0 评论 195 浏览 评分:0.0
1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d",&n); while(n>1) { if(n%2==0) …… 题解列表 2024年07月18日 0 点赞 0 评论 180 浏览 评分:0.0
编写题解 2812: 球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h,i; scanf("%d",&h); double h1=h,s=0.0; s=2.0*h1; fo…… 题解列表 2024年07月18日 0 点赞 0 评论 204 浏览 评分:0.0
C语言有规律的数列求和 摘要:解题思路:首先从题目给出的数列中可以看出,第An项的分母是An-1项的分母与分子之和,而第An项的分子是An-1项的分母,所以分子可以假设为a,分母假设为b,则后一项的分子是a+b,分母是a,再依次求…… 题解列表 2024年07月18日 0 点赞 0 评论 247 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月18日 0 点赞 0 评论 500 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月18日 0 点赞 0 评论 184 浏览 评分:0.0
C语言判断完数(简单易懂版) 摘要:# C语言简单易懂判断完数 ## 解题思路 **由完数的概念可知,完数是它的因子之和等于它本身,所以在求解的时候需要首先考虑因子,然后对因子求和,再来判断求解出来的因子之和是否等于这个数它…… 题解列表 2024年07月18日 0 点赞 0 评论 305 浏览 评分:0.0
2950: 素数回文数的个数 摘要:解题思路:函数定义fuk you注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fuk(ll…… 题解列表 2024年07月18日 0 点赞 0 评论 386 浏览 评分:9.9
题解 1512: 蓝桥杯算法提高VIP-多项式输出 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a[250];int main(){ cin>>n; fo…… 题解列表 2024年07月18日 0 点赞 0 评论 216 浏览 评分:0.0
还有比这还简单的吗??? 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2024年07月17日 0 点赞 0 评论 205 浏览 评分:0.0