Skip to content

Instantly share code, notes, and snippets.

@EntaltsevSN
Created September 18, 2023 19:50
Show Gist options
  • Save EntaltsevSN/0841d5663b94500b3703808b606b9faa to your computer and use it in GitHub Desktop.
Save EntaltsevSN/0841d5663b94500b3703808b606b9faa to your computer and use it in GitHub Desktop.
Square
string stringNumber = "256";
int numberFromString = Convert.ToInt32(stringNumber);
int square = numberFromString * numberFromString;
Console.WriteLine("Квадрат введенного числа равен " + square);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment