Last active
February 7, 2025 06:55
-
-
Save FaVaKu/8d950d817fdb3ef15d4884d8dce87648 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 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