Here's my code:
public static class Angle
{
public static double DegreesToGradians(double degrees)
{
return degrees * (200 / 180);
}
}
The problem is, let's say degrees = 1, 1 * (200 / 180)
should be 1.11111d, but for some reason I keep getting 1.0d, why would it be auto rounding and how do I stop that?