文科生的悲哀(找规律) 摘要:解题思路:第一次第二次第三次第四次第五次政治历史政治历史政治地理历史地理综合政治地理地理观察题目和表格可以发现,奇数次的政治和地理的数目分别和上一奇数次的政治和地理的数目有关系,即第x次的政治数量为x…… 题解列表 2023年02月03日 0 点赞 0 评论 515 浏览 评分:8.0
求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int b,n,i,sum=0; scanf("%d/n",&n) ;for(i=1;i<=n;i++){ s…… 题解列表 2023年02月03日 0 点赞 0 评论 359 浏览 评分:0.0
点和正方形的关系 摘要:解题思路:用数学知识就可以了,点到正方形中心的距离小于或等于时点就在正方形内注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf(…… 题解列表 2023年02月03日 0 点赞 0 评论 1241 浏览 评分:9.9
偶数列举、、、 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,n; scanf("%d",&n); for(i=1;i<n;++i){ if(i%2==0){…… 题解列表 2023年02月03日 0 点赞 0 评论 344 浏览 评分:0.0
2812: 球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;int main (){ double h,sum; cin>>h; //输入初始高…… 题解列表 2023年02月03日 0 点赞 0 评论 802 浏览 评分:9.9
1257: 超级楼梯 摘要:```cpp #include using namespace std; int total; int sum(int step,int m) { if(step>m) …… 题解列表 2023年02月03日 0 点赞 0 评论 505 浏览 评分:9.9
1256: 诡秘的余数 摘要:```cpp #include #include using namespace std; int main() { char x[2000]; int n; …… 题解列表 2023年02月03日 0 点赞 0 评论 481 浏览 评分:9.9
1255: 蓝桥杯算法提高-能量项链 摘要:```cpp #include #include using namespace std; typedef long long LL; namespace IO { inline…… 题解列表 2023年02月03日 0 点赞 0 评论 483 浏览 评分:9.9
1254: 考试排名 摘要:```cpp #include #include using namespace std; typedef struct BSTree *BST; struct BSTree { …… 题解列表 2023年02月03日 0 点赞 0 评论 492 浏览 评分:9.9
1253: 老王赛马 摘要:```cpp #include #include using namespace std; int main() { int n,i,j,a[1024],b[1024],x,cou…… 题解列表 2023年02月03日 0 点赞 0 评论 430 浏览 评分:9.9