解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h>
#define pi 3.1415
using namespace std;
int L, W,x, y, R,a, v, s;
double resX, resY;
int main()
{
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 << fixed << setprecision(2) << resX << " " << resY << endl;
}
return 0;
}
0.0分
0 人评分
假币问题 (C语言代码)浏览:2656 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码) 如果a<0,那就不是这个代码了,哈哈哈哈浏览:1306 |
上车人数 (C语言代码)浏览:1257 |
数组输出 (C语言代码)浏览:811 |
C语言训练-计算1977!* (C++代码)浏览:907 |
【绝对值排序】 (C++代码)浏览:720 |
妹子杀手的故事 (C语言代码)浏览:1297 |
【简单计算】 (C语言代码)浏览:642 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:636 |
K-进制数 (C语言描述,蓝桥杯)浏览:955 |