1303: 统计数字 摘要:```cpp #include using namespace std; int a[500001],n,ans=1; void qs(int l,int r) { int m=a…… 题解列表 2023年04月22日 0 点赞 0 评论 490 浏览 评分:9.9
1304: 阶乘后K位 摘要:```cpp #include using namespace std; int main() { long long pro=1; int i,j,n,k; c…… 题解列表 2023年04月22日 0 点赞 0 评论 527 浏览 评分:9.9
1305: 老管家的忠诚 摘要:```cpp #include using namespace std; int divide(int *a,int *b,int low,int high) { int mid=a…… 题解列表 2023年04月22日 0 点赞 0 评论 453 浏览 评分:9.9
1306: 老管家的忠诚2 摘要:```cpp #include using namespace std; int num[100001]; struct node { int l,r,w; }tree[4000…… 题解列表 2023年04月22日 0 点赞 0 评论 470 浏览 评分:9.9
简单求和训练 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a,b,c,sum=0; scanf("%f%f%f",&a,&b,&c); for…… 题解列表 2023年04月22日 0 点赞 0 评论 290 浏览 评分:9.9
自由下落的距离计算 摘要:解题思路:计算经过路程,下一次弹起高度注意事项:最后减去重复加的路程即可参考代码:#include<stdio.h>int main(){ float M,N,sum=0; scanf("…… 题解列表 2023年04月22日 0 点赞 0 评论 267 浏览 评分:9.9
矩阵加法—一个数组轻松解决(c) 摘要:```c #include int main() { int n,m; int arr[100][100] = { 0 }; scanf("%d%d", &n, &m); i…… 题解列表 2023年04月22日 0 点赞 0 评论 355 浏览 评分:9.9
区间中最大的数(c语言) 摘要:```c #include int main() { int n; scanf("%d", &n);//第一行输入 int arr[1000] = { 0 },a = 1;/…… 题解列表 2023年04月22日 0 点赞 0 评论 604 浏览 评分:9.9
2775: 等差数列末项计算 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin >>a>>b>>c; cout<…… 题解列表 2023年04月22日 0 点赞 0 评论 402 浏览 评分:9.9
2773: 计算线段长度(制作不易,给个好评) 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb; cin>>xa>>ya>>…… 题解列表 2023年04月22日 0 点赞 0 评论 593 浏览 评分:9.9