The following program has several syntax errors as well as style inconsistencies. Correct the syntax errors and

Question:

The following program has several syntax errors as well as style inconsistencies.

Correct the syntax errors and identify the style violations.

/* *********************************************

* AgeIncrementer.cs Author: Doyle

* Prompts the users for their ages in

* a class method. Prints the value entered back in the Main( ) method.

using System;

namespace AgeExample

{

public class AgeIncrementer

{

public static void Main( )

{

int AGE;

string aValue;

age = GETAge(aValue);

Console.WriteLine("Your age next year will be {0}",

++age);

Console.Read( );

}

public static GETAge( )

{

Console.Write("Enter your age: ");

aValue = Console.ReadLine( );

age = int.Parse(aValue);
return int AGE;
}
}}

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: