using System; public class Test { public static void Main() { double p_sin = Math.Sin(1); //starting with this double t_sin = Math.Sin(1337); //Test! int num = 0; for (int i = 0; i < 10000000; i++) //10,0000,000 trials { p_sin = Math.Sin(p_sin); //take sine of the number over and over t_sin = Math.Sin(t_sin); num++; if (num % 500000 == 0) { Console.WriteLine(num + ": " + p_sin + " test: " + t_sin); } } } }