Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static int getStopY(float angle, int distance) {
return Double.valueOf(Math.rint(-1 * distance * Math.sin(Math.toRadians(angle)))).intValue();
}
}