Question: The following program has several syntax errors as well as style inconsistencies. Correct the syntax errors and identify the style violations. /* ********************************************* * AgeIncrementer.cs

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;
}
}}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Systems Analysis Design Questions!