2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb,a,b; …… 题解列表 2023年12月02日 0 点赞 0 评论 368 浏览 评分:9.9
题解 2771: 大象喝水//制作不易,给个好评//附赠无限循环 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ /** while(16534123412387…… 题解列表 2023年12月02日 0 点赞 0 评论 398 浏览 评分:9.9
编写题解 2775: 等差数列末项计算(好不容易整完的,留个好评,求求了) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a1,a2,n; cin>>a1…… 题解列表 2023年12月02日 0 点赞 0 评论 315 浏览 评分:9.9
2775: 等差数列末项计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a1,a2,n; cin>>a1>>a…… 题解列表 2023年12月02日 0 点赞 0 评论 361 浏览 评分:9.9
1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double r,s; cin>>r; …… 题解列表 2023年12月02日 1 点赞 0 评论 944 浏览 评分:9.9
2908: 白细胞计数 摘要:``` #include using namespace std; const int N = 100010; double a[N]; int main(){ double sum =…… 题解列表 2023年12月02日 0 点赞 0 评论 402 浏览 评分:9.9
题解 2548: [CSP-J2020] 优秀的拆分 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int z[1000000]; int er(long long a) …… 题解列表 2023年12月02日 0 点赞 0 评论 474 浏览 评分:9.9
归并排序(简单易懂) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{//Main public static void main(String[]…… 题解列表 2023年12月02日 0 点赞 0 评论 604 浏览 评分:9.9
题解 2779: 输出绝对值 摘要:解题思路:创建一个浮点型变量,再用printf输出就可以了。注意事项:要用#include <bits/stdc++.h>当头文件参考代码:#include <bits/stdc++.h>using …… 题解列表 2023年12月03日 0 点赞 0 评论 677 浏览 评分:9.9
题解 2774: 计算三角形面积(制作不易,给个好评) 摘要:解题思路:可以先做一下2773,海伦公式:sqrt(p*(p-a)*(p-b)*(p-c)),p=(a+b+c)/2。注意事项:要用双精度浮点,单精度试了就错。参考代码:#include <bits/…… 题解列表 2023年12月03日 0 点赞 0 评论 480 浏览 评分:9.9