Hello, I’m working on this task:
Create five int variables. Name them with a lower camel case representation of these strings:
Number of cars
Money amount
Plane speed
Hole depth
Age
Example:
int numberOfCars;
etc…
Here is my code:
public static class WriteUsingLowerCamelCase
{
public static void Main()
{
int numerOfCars = 50;
int moneyAmount = 40;
int planeSpeed = 200;
int holeDepth = 30;
int age = 20;
}
}
Can anyone please help me to solve it?