예제 #1
0
        static void Main(string[] args)
        {
			int n;
			Console.WriteLine("Введите количество человек в кругу:");
			n = Convert.ToInt32(Console.ReadLine());
			if (n<0)
			{
				Console.WriteLine("Число должно быть положительным");
				n = Convert.ToInt32(Console.ReadLine());
			}

			People P = new People(n);
			P.Count();
			Console.WriteLine("Останется человек под номером {0}", P.Print());

            Console.Write("Нажмите любую клавишу для закрытия программы.");
            Console.ReadKey();
        }
예제 #2
0
        static void Main(string[] args)
        {
            int n;
            Console.WriteLine("Введите количество человек:");
            n = Convert.ToInt32(Console.ReadLine());
            if (n < 0)
            {
                Console.WriteLine("Число должно быть положительным");
                n = Convert.ToInt32(Console.ReadLine());
            }

            People P = new People();
            for (int i = 1; i <= n; i++)
            {
                P.PeopleAdd(i);
            }
            P.Count(n);

            Console.Write("Нажмите любую клавишу для закрытия программы.");
            Console.ReadKey();
        }
예제 #3
0
		public void CountPeople2()
		{
			People P = new People(10);
			P.Count();
			Assert.AreEqual(5, P.Print());
		}
예제 #4
0
		public void CountPeople1()
		{
			People P = new People();
			P.Count();
			Assert.AreEqual(1, P.Print());
		}
예제 #5
0
		public void GeneratePeople2()
		{
			People P = new People(10);
		}
예제 #6
0
		public void GeneratePeople1()
		{
			People P = new People();
		}
예제 #7
0
 public void GeneratePeople1()
 {
     People P = new People();
     Assert.IsNotNull(P);
 }