// Directions: Code Practice 5-1
// Follow the instructions in the comments below, then submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
// 1) Create an integer variable for age and assign an appropriate age for the an adult using the correct naming convention. (example: 25)
int adultAge = 25;
// 2) Output the age to the console (example: Age: 25)
Console.WriteLine(adultAge);
// 3) Replace the age with the age plus 5.
adultAge = adultAge += 5;
// 4) Output the age to the console (example: Age: 30)
// 5) Replace the age with the age minus 7.
adultAge = adultAge -= 7;
// 6) Output the age to the console (example: Age: 23)
// 7) Replace the age with the assigned multipied by 2.
adultAge = adultAge *= 2;
// 8) Output the age to the console (example: Age: 46)
// 9) Replace the age with the assigned age plus 1 using Method 1.
adultAge = adultAge +1;
// 10) Output the age to the console (example: Age: 47)
// 11) Replace the age with the assigned age plus 1 using Method 2.
// 12) Output the age to the console (example: Age: 48)
// 13) Replace the age with the age plus 1 using Method 3.
// 14) Output the age to the console (example: Age: 49)
}