theme changed
This commit is contained in:
15
labs/lab9/Igra/Program.cs
Normal file
15
labs/lab9/Igra/Program.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Gamer g1 = new Gamer("Niko");
|
||||
|
||||
for (int i = 1; i <= 6; i++)
|
||||
{
|
||||
Console.WriteLine("Выпало количество очков {0} для игрока {1}", g1.SeansGame(), g1.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user