在努力存钱的小松鼠很矫健
在努力存钱的小松鼠很矫健
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在努力存钱的小松鼠很矫健的博客
全部文章
(共53篇)
题解 | 直线与圆交点间距,先求圆心到直线的举例,再用勾股定理,结果别忘记乘以2
#include <bits/stdc++.h> #include <cmath> #include <math.h> using namespace std; struct point{ double x,y; point(double A,d...
2025-08-15
0
15
题解 | 三角形面积,叉乘记得加绝对值
#include <bits/stdc++.h> using namespace std; struct point{ double x,y; point(double A,double B){ x=A,y=B; } point() = ...
2025-08-15
0
15
题解 | 点到直线距离, 主要是需要叉乘得到三角形面积,然后除以底,就可以得到高,为距离
#include <bits/stdc++.h> #include <cmath> using namespace std; struct point{ double x,y; point(double A,double B){ x=A,y=...
2025-08-15
0
21
题解 | 学生综合评估系统,这题没啥,就是判断一下大小,其余的都写好了
#include<bits/stdc++.h> using namespace std; // 定义学生结构体 struct Student{ int id; int academic_score; int activity_score; }; // 评估函数...
2025-08-15
0
16
题解 | 两点间距离,这题没啥,结构体都写好了
/** * struct Point { * int x; * int y; * Point(int xx, int yy) : x(xx), y(yy) {} * }; */ #include <math.h> class Solution { public: /*...
2025-08-15
0
15
题解 | 最厉害的学生,需要创建结构体,然后 比较大小,类也可以是向量,需要初始化向量长度
#include <iostream> #include <vector> using namespace std; struct student{ string s; int c1; int c2; int c3; int sum;...
2025-08-15
0
18
题解 | 凯撒解密,跟之前向后移动不同,这一题是 向前移动。
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 进行凯撒解密 * @param password string字符串 旺仔哥哥的密码 * @par...
2025-08-15
0
15
题解 | 求阶乘,科学计数法不是10e9,而是1e9,e就表示10
class Solution { public: int factorialOfN(int n) { long long int re=1; const long long int MOD = 1e9+7; for (int i=n; i>...
2025-08-15
0
15
题解 | 第一宇宙速度,科学计数法输入是6.67e-11
#include <math.h> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算星球的第一宇宙速度 * @param M double浮...
2025-08-15
0
22
题解 | 一元二次方程,主要就是b的平方减4ac需要大于等于零
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 判断二元一次方程组是否有解 * @param a int整型 二次...
2025-08-15
0
18
首页
上一页
1
2
3
4
5
6
下一页
末页