箬笠
箬笠
全部文章
分类
归档
标签
去牛客网
登录
/
注册
箬笠的博客
全部文章
(共2篇)
题解 | 两直线交点
#include<bits/stdc++.h> using namespace std; struct point { double x, y; point(double A, double B) { x = A, y = B; } po...
2025-10-28
0
9
题解 | 斗兽棋
#include <stdio.h> //noob54 斗兽棋 int judge(char x) { if (x == 'e')//大象 return 3; else if (x == 't')//老虎 return 2; else if (x == 'c')//猫 ...
2025-10-20
1
18