Hello, I’m working on this task:
Write the program that calculates 10 squared and outputs it to the screen. The output should be:
10 squared is ***
Here is my code:
public static class StopMovingWalls
{
public static void Main()
{
int valueOne = 10*10;
Console.WriteLine($"10 squared is"{valueOne});
}
}
Can anyone please help me to solve it?