Created
February 7, 2025 06:26
-
-
Save r1d000/83cff6ac137aa12f6b982658e9b6b127 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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