public static void Main(String[] args)
Console.WriteLine("1. The result of 17 - 4 is " + result1);
result2 = (double) 647 / 37;
Console.WriteLine("2. The result of 647 / 37 is " + result2);
Console.WriteLine("3. The remainder of 647 / 37 is " + remainder3);
double decimalequivalent;
decimalequivalent = (double) 7 / 9;
Console.WriteLine("4. The decimal equivalent of seven ninths is " + decimalequivalent);
Area = (double) 1 / 2 * (9 * 19);
Console.WriteLine("5. This is the area of a triangle with base of 9 and height of 19: " + Area);
Console.WriteLine("6. The value of pi is: " + valueOfPi);
areaOfCircle = Math.PI * Math.Pow(12, 2);
Console.WriteLine("7. The area of a circle with a radius of 12 is: " + areaOfCircle);
futureValue = 100 * Math.Pow((1 + 0.06), 7);
Console.WriteLine("8. The future value of $100 compounded annually for 7 years at an interest rate of 6% is $ " + futureValue);
Console.WriteLine("9. 7 and 8 are equal? " + (7 == 8));
Console.WriteLine("10. 22.003 and 22.002 are not equal? " + (22.003 != 22.002));
Boolean greaterThanOrEqual;
Console.WriteLine("11. 4 is greater than or equal to 33? " + (4 >= 33));
Console.WriteLine("12. '+' is less than '@'? " + ('+' < '@'));
if (7 < 8 && 5 == 5.5 || "joe" != "Joe")
Console.WriteLine("14. The result of not (7 less than 8 and 5 equal to 5.5 or 'joe' is not equal to 'Joe') is " + (7 < 8 && 5 == 5.5 || "joe" != "Joe"));
Console.WriteLine("15. If you concatenate 'red' and 'green' and 'blue', you get " + ("red" + "green" + "blue"));