解题思路:

注意事项: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 人评分

  评论区

  • «
  • »