报数问题(数组表示链表) 摘要:#include<iostream> #include<string> using namespace std; const int N=300; string s; //…… 题解列表 2023年07月30日 0 点赞 0 评论 368 浏览 评分:9.9
蓝桥杯算法训练VIP-数的统计 C++ map 摘要:# map 有序容器 ```c++ #include #include #include #include using namespace std; const int N = 1e5+…… 题解列表 2023年07月30日 0 点赞 0 评论 465 浏览 评分:0.0
蓝桥杯算法训练VIP-整数平均值-题解(C语言代码)在VS验证过 摘要:解题思路:用常规for使得一组数输入在一行内注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>void qiuhe(int* p, …… 题解列表 2023年07月30日 0 点赞 0 评论 403 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int max = 0; int n = 0; scanf("%d",&n…… 题解列表 2023年07月30日 0 点赞 0 评论 404 浏览 评分:0.0
无需结构体的做法(C语言) 摘要: #include #include int main() { int num;//投票人数(数据个数) char color[1000][…… 题解列表 2023年07月30日 0 点赞 0 评论 399 浏览 评分:0.0
求三个数最大值 摘要:解题思路:假设其中一个数为最大值,分别与另外两个数做比较。参考代码:#include<stdio.h>int main(){ int a,b,c; int m = 0; scanf("%d %d…… 题解列表 2023年07月30日 0 点赞 0 评论 396 浏览 评分:0.0
完数的判断(嵌套循环) 摘要:解题思路: 这题不好做,至少对于我( ´・・)ノ(._.`),想到了用数组来存完数的因子,那就好多了 注意事项: 参考代码: ```c #include int main() {…… 题解列表 2023年07月30日 0 点赞 0 评论 425 浏览 评分:0.0
计算多项式的值 摘要:解题思路:注意事项:还是要注意数据的使用类型范围!参考代码:#include<stdio.h>int main(){ double x,t=1,s=1; int n; scanf("…… 题解列表 2023年07月30日 0 点赞 0 评论 469 浏览 评分:0.0
【编程入门】阶乘求和 摘要:解题思路:注意求和的范围要大注意事项:参考代码:#include<stdio.h>int main(){ unsigned long int s1=1,s2=0; int n; sc…… 题解列表 2023年07月30日 0 点赞 0 评论 332 浏览 评分:0.0
有规律的数列求和(感觉主要考查变量赋值) 摘要:解题思路: 这题的话,设置了三个变量值来得出每一项,从题目可知,每一项的分母是前一项的分子,每一项的分子是前一项的分子和分母的和 注意事项: 分式要保留小数的话,其中一个数要为精度类型 参考代…… 题解列表 2023年07月30日 0 点赞 0 评论 495 浏览 评分:0.0