Please help me with the task: "Readable names"

Hello, I’m working on this task:

Change names in the program to correspond to C# naming conventions for local variables. Don’t change anything else.

Here is my code:


namespace Naming
{
   class CrazyNames
   {
       public static void Main()
       {
           int variableName;

           string anothervariablename;

           int thirdvariable;
       }
   }
}

Can anyone please help me to solve it?

To make this task “green” - you need to name variables using the camel case. For example, anothervariablename will be anotherVariableName. Rename the thirdvariable in the same way, and you are good to go!

1 Like