1
0

second ex

This commit is contained in:
2026-01-29 20:09:31 +03:00
parent de89a5bcc7
commit 7224c4f525
4 changed files with 137 additions and 0 deletions

20
second/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
namespace second
{
internal class Program
{
static void Main(string[] args)
{
Payment payment =
new Payment(
"Шумилкин Александр Олегович",
328000,
2022,
5,
20,
28
);
Console.WriteLine( payment.ToString() );
}
}
}