台球碰撞-题解(C语言代码) 摘要:代码我自己写出来了,主要是对称那里,我看到别人的更简洁,所以贴出别人的代码,先记下来 /*思路;根据运动的分解,可分解竖直方向和水平方向。题目中V速度不变,并且是完全弹性碰撞 分解后竖直方向速度和…… 题解列表 2019年08月26日 1 点赞 0 评论 602 浏览 评分:10.0
1075: 台球碰撞 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; double l,w,x,y,r,a,v,s; i…… 题解列表 2024年05月24日 0 点赞 0 评论 97 浏览 评分:9.9
台球碰撞-题解(C语言代码) 直接取余 摘要:把圆的运动看成圆心的运动,忽略半径,计算总路程然后直接取余得位置。 参考代码: ```c #include #include const double k = 3.14159265358…… 题解列表 2019年10月16日 0 点赞 0 评论 446 浏览 评分:9.9
台球碰撞 (C语言代码) 摘要:题目分析具体看代码吧代码 #include<stdio.h> #include<math.h> int main() { double L,W,x,y,R,a,v…… 题解列表 2017年06月20日 4 点赞 5 评论 1492 浏览 评分:9.9
1075:台球碰撞 摘要:```cpp #include #include #include #define PI 3.1415926 using namespace std; int main() { …… 题解列表 2022年08月23日 0 点赞 0 评论 760 浏览 评分:9.9
台球碰撞 (C++代码)(吐槽一波 摘要:解题思路:注意事项:mdzz啊!a * asin(1) / 90和#define PI 3.1415926535 PI * a / 180结果竟然不一样,这精度,,好迷啊。。。参考代码:#inclu…… 题解列表 2018年11月16日 1 点赞 1 评论 649 浏览 评分:9.9
优质题解 【BornFated】1075_台球碰撞_C语言题解 摘要:# 1075_台球碰撞 这个问题涉及到**球**在**二维平面**内的**受边界限制**的**斜向运动**,在写程序之前有几个问题要考虑: a.我们最终所求的是**球心**坐标,而球与球桌…… 题解列表 2019年12月14日 0 点赞 17 评论 3221 浏览 评分:9.9
台球碰撞-题解(C++代码) 摘要: #include #include #include #define PI acos(-1) #define f(a) (((a)*(PI))/(180…… 题解列表 2020年02月26日 0 点赞 0 评论 329 浏览 评分:9.9
台球碰撞(看题解自己敲啦一遍,题解写的真好【开心】) 摘要:解题思路:注意事项:acos(-1)=π,数学要学好啊!参考代码:#include#include#includeusing namespace std; int main() { int L,…… 题解列表 2023年06月25日 0 点赞 0 评论 137 浏览 评分:9.9
[java]运动的抽象与分解 摘要:``` import java.util.Scanner; public class Main { static int L, W, x, y, R, a, v, s; …… 题解列表 2024年03月03日 0 点赞 0 评论 131 浏览 评分:9.9