float MyNextBirthdayAge = 0;
MyNextBirthdayAge = MyAge + 1;
string MyBirthday = "May 12";
Console.Write("My 2nd Java Program");
Console.Write("The sum of 2 and 3 = " + sum);
Console.Write("7 + 8 = " + (7+8));
Console.Write("My Age is " + MyAge);
Console.Write("My Birthday is " + MyBirthday);
Console.Write("My Age Next Year is Computed " + MyNextBirthdayAge);
Console.Write("My Age Next Year is Fixed " + (MyAge + 1));
formattedString = ("%.3f", HalfMyAge);
Console.Write("My Age in Half is Formatted " + formattedString);
Console.Write("My Age in Half is Original " + HalfMyAge);
Console.Write("My Current Age is %.3f My Age in Half is %.3f", MyAge, HalfMyAge);