没学链表,但学好循环和数组照样能解决问题 摘要:解题思路:创建一个数组,根据输入的人数往数组中存放每个人的编号,虽然没办法直接删除数组中的元素,但编号是从1开始的,也就是说当报数到3的时候,可以通过将那个编号变为0的方式达到退出的效果(变为其他数也…… 题解列表 2023年11月16日 0 点赞 0 评论 209 浏览 评分:2.0
2819: 数字反转 摘要:``` #include using namespace std; int main(){ int a,ans=0; cin>>a; while(a){ ans=ans*10+…… 题解列表 2023年11月21日 0 点赞 0 评论 140 浏览 评分:2.0
菜鸡做的,仅供参考,不足请指导 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2023年11月27日 0 点赞 0 评论 224 浏览 评分:2.0
1852: 求1+2+3+...+n的值(重温旧题) 摘要://函数 #include <bits/stdc++.h> using namespace std; long long aaaa(int n) { int sum =0; …… 题解列表 2023年11月29日 0 点赞 0 评论 225 浏览 评分:2.0
c代码记录之验证字串 摘要:1.空串是所有字符串的子串,但这题好像不验证这个 2.gets不通过,scanf能通过 #include #include int main() { …… 题解列表 2023年11月30日 0 点赞 1 评论 266 浏览 评分:2.0
求平方差个数(超时可参考) 摘要:`解题方法:多列几组关于平方的等式,然后观察规律 ` `例如: 1=1²-0² 5=3²-2² 2 6 3=2²-1² 7=…… 题解列表 2023年11月30日 0 点赞 0 评论 342 浏览 评分:2.0
Yu校门外的树(差分+前缀和) 摘要:# 解题思路 简单循环模拟题解很多人发过了,我这里提供一种高效方法。 # 参考代码 ```c++ #include using namespace std; int main() {…… 题解列表 2023年12月01日 0 点赞 0 评论 132 浏览 评分:2.0
Yu:1464: 蓝桥杯基础练习VIP-分解质因数 摘要:**解题思路:** 这道题虽然要求找到质因数,但其实不需要判断质数。 因为每个合数都可以拆解为n个质数,你只要从小到大的分解每个因数,就不存在合数。 例:8 = 2 * 2 * 2,…… 题解列表 2023年12月01日 0 点赞 0 评论 166 浏览 评分:2.0
题解 2771: 大象喝水 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double h,r; cin>>h>>r; …… 题解列表 2023年12月02日 0 点赞 0 评论 136 浏览 评分:2.0
编写题解 2771: 大象喝水 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double h,r; cin>>h>>r; …… 题解列表 2023年12月03日 0 点赞 0 评论 133 浏览 评分:2.0