Skip to content

Instantly share code, notes, and snippets.

@EntaltsevSN
Created September 18, 2023 19:40
Show Gist options
  • Save EntaltsevSN/dfdd7ebf76618c4f559da20ea2f4e4b2 to your computer and use it in GitHub Desktop.
Save EntaltsevSN/dfdd7ebf76618c4f559da20ea2f4e4b2 to your computer and use it in GitHub Desktop.
Arifmetics
Console.WriteLine("4 плюс 6 = " + (4 + 6));
Console.WriteLine("4 уменьшенное на 1 = " + (4 - 1));
Console.WriteLine("3 умножить на 7 = " + (3 * 7));
Console.WriteLine("16 разделить на 8 = " + (16 / 8));
Console.WriteLine("11 разделить на 5 = " + (11 / 5f));
Console.WriteLine("целая часть от деления 13 на 3 = " + (13 / 3));
Console.WriteLine("остаток от деления 17 на 8 = " + (17 % 8));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment