/* Directions: Practice #5-1
NOTE: i.e. means the output(what is displayed in the area below) should look like what is shown to the right of "ie."
1) Create an integer variable for age and assign it the value of 25 using the correct naming convention. (ie. 25)
2) Output the age to the console (ie. Age: 25)
3) Replace the the assigned age with the assigned plus 5.
4) Output the age to the console (ie. Age: 30)
5) Replace the the assigned age with the assigned minus 7.
6) Output the age to the console (ie. Age: 23)
7) Replace the the assigned age with the assigned multipied by 2.
8) Output the age to the console (ie. Age: 46)
9) Replace the the assigned age with the assigned age plus 1 using Method 1 - performing calculations p. 136.
10) Output the age to the console (ie. Age: 47)
11) Replace the the assigned age with the assigned age plus 1 using Method 2 - ++ method.
12) Output the age to the console (ie. Age: 48)
13) Replace the the assigned age with the assigned age plus 1 using Method 3 - Combined Assignment Operator p 140.
14) Output the age to the console (ie. Age: 49)
15) Submit your dotnetfiddle link in Blackboard.*/
using System;
public class Program
{
public static void Main()
}