WarOfUnderword
WarOfUnderword
全部文章
分类
基础算法(3)
数据库(1)
题解(4)
归档
标签
去牛客网
登录
/
注册
Alice
全部文章
(共1篇)
点到直线距离公式(两点确定直线 Ax + By + C = 0)
c++ #include <iostream> #include <cmath> using namespace std; struct Point{ int x,y; Point(int x1,int y1){ x = x1; y = y1; } }; //...
C++
C
数学
Java
2022-10-08
0
576