Advertisement
Nikitka_36

9.5 normal

Oct 21st, 2014
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.80 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3. using System.Collections.Generic;
  4.  
  5. namespace _9._5
  6. {
  7.     class Program
  8.     {
  9.         static void Main()
  10.         {
  11.             Console.WriteLine("Введи последовательность:");
  12.             List<int> spisok = new List<int>();
  13.                
  14.             while(true)
  15.             {
  16.                int number = int.Parse(Console.ReadLine());
  17.                spisok.Add(number);
  18.                if (spisok.Count > 2)
  19.                    if (spisok[spisok.Count - 1] != spisok[spisok.Count - 2] + spisok[spisok.Count - 3])
  20.                    {
  21.                        Console.WriteLine("Не последовательность!");
  22.                        break;
  23.                    }
  24.             }
  25.            Console.ReadKey();
  26.         }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement