解题思路:
注意事项:acos(-1)=π,数学要学好啊!
参考代码:
#include
#include
#include
using namespace std;
int main()
{
int L, W;
int x, y, R;
int a, v, s;
double resX, resY;
while (cin >> L >> W >> x >> y >> R >> a >> v >> s) {
if (!L)
{
break;
}
L -= 2 * R;
W -= 2 * R;
x -= R;
y -= R;
double arc = a * acos(-1) / 180;
double length = fabs(x + v * s * cos(arc));
double width = fabs(y + v * s * sin(arc));
while (length > 2 * L )
{
length -= 2 * L;
}
while (width > 2 * W)
{
width -= 2 * W;
}
if (length <= L)
{
resX = length + R;
}
else {
resX = 2 * L - length + R;
}
if (width <= W)
{
resY = width + R;
}
else
{
resY = 2 * W - width + R;
}
cout << setiosflags(ios::fixed )<< setprecision(2) << resX << " " << resY << endl;
}
return 0;
}
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:897 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
求圆的面积 (C语言代码)浏览:1756 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:582 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:582 |
Tom数 (C语言代码)浏览:758 |
C二级辅导-等差数列 (C语言代码)浏览:806 |
C二级辅导-公约公倍 (C语言代码)浏览:537 |
C语言程序设计教程(第三版)课后习题10.7 (用指针求解)浏览:1542 |
三进制小数 (C语言代码)浏览:903 |