Skip to content

Instantly share code, notes, and snippets.

@FaVaKu
Last active February 7, 2025 06:55
Show Gist options
  • Save FaVaKu/8d950d817fdb3ef15d4884d8dce87648 to your computer and use it in GitHub Desktop.
Save FaVaKu/8d950d817fdb3ef15d4884d8dce87648 to your computer and use it in GitHub Desktop.
namespace image
{
internal class Program03
{
static void Main(string[] args)
{
int row = 52;
int cnt =3;
double res = row/cnt;
int rem = 52%3;
Console.WriteLine($"Сколько рядов: {res} Сколько остается (мне) {rem} ");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment