Skip to content

Instantly share code, notes, and snippets.

@r1d000
Created February 7, 2025 06:26
Show Gist options
  • Save r1d000/83cff6ac137aa12f6b982658e9b6b127 to your computer and use it in GitHub Desktop.
Save r1d000/83cff6ac137aa12f6b982658e9b6b127 to your computer and use it in GitHub Desktop.
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
int photo = 52;
int line = 3;
int lineCount = photo / line;
int photoOut = photo - lineCount * line;
Console.WriteLine($"Рядов {lineCount}, {photoOut} фото останется");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment