// 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 age = 25;
// 2) Output the age to the console (example: Age: 25)
Console.WriteLine(age);
// 3) Replace the age with the age plus 5.
age = age + 5;
// 4) Output the age to the console (example: Age: 30)
// 5) Replace the age with the age minus 7.
age = age - 7;
// 6) Output the age to the console (example: Age: 23)
// 7) Replace the age with the assigned multipied by 2.
age = age * 2;
// 8) Output the age to the console (example: Age: 46)
// 9) Replace the age with the assigned age plus 1 using Method 1.
age = age + 1;
// 10) Output the age to the console (example: Age: 47)
// 11) Replace the age with the assigned age plus 1 using Method 2.
age ++;
// 12) Output the age to the console (example: Age: 48)
// 13) Replace the age with the age plus 1 using Method 3.
age += 1;
// 14) Output the age to the console (example: Age: 49)
}