Skip to content

Instantly share code, notes, and snippets.

@MissEve1
Last active February 7, 2025 07:43
Show Gist options
  • Save MissEve1/40dbd2c8fa22628b925c4197e74d6f95 to your computer and use it in GitHub Desktop.
Save MissEve1/40dbd2c8fa22628b925c4197e74d6f95 to your computer and use it in GitHub Desktop.
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
int numberOfChairsInOneRow = 3;
int numberOfChairsInTheHall = 52;
int rows = numberOfChairsInTheHall / numberOfChairsInOneRow;
int remainder = numberOfChairsInTheHall - (numberOfChairsInOneRow * rows);
Console.WriteLine(rows);
Console.WriteLine(remainder);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment