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 Program
{
public static void Main()
{
int NumberOfCars;
int MoneyAmount;
int PlaneSpeed;
int HoleDepth;
int Age;
}
}
Can anyone please help me to solve it?