public static void Main(String[] args)
result2 = (int) ((double) 647 / 37);
result3 = (double) 647 / 37;
result5 = (double) 9 * 19 / 2;
result7 = Math.PI * Math.Pow(12, 2);
result8 = (int) (100 * Math.Pow((1 + 0.06), 7));
result10 = 22.003 != 22.002;
Console.WriteLine("0. The result of 2 + 3 is " + result0);
Console.WriteLine("1. The result of 17 - 4 is " + result1);
Console.WriteLine("2. The result of 647 / 37 is " + result2);
Console.WriteLine("3. The remainder of 647 / 37 is " + result3);
Console.WriteLine("5. This is the area of a triangle with base of 9 and height of 19 " + result5);
Console.WriteLine("6. The value of pi is " + result6);
Console.WriteLine("7. The area of a circle with a radius of 12 is " + result7);
Console.WriteLine("8. The future value of 100$ compounded annually for 7 years at an interest rate of 6 percent is $ " + result8);
Console.WriteLine("9. 7 and 8 are equal? " + result9);
Console.WriteLine("10. 22.003 and 22.002 are not equal? " + result10);
Console.WriteLine("11. 4 is greater than or equal to 33? " + result11);