Advertisement
EvgeniiKraaaaaaaav

1.10(sequence max in array)

Dec 5th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.44 KB | None | 0 0
  1. //https://vk.com/evgenykravchenko0
  2.  
  3.                 ___                                        ___                   ___    
  4.                /  /\                  ___                 /  /\                 /  /\    
  5.               /  /:/_                /__/\               /  /:/_               /  /:/_  
  6.              /  /:/ /\               \  \:\             /  /:/ /\             /  /:/ /\  
  7.             /  /:/ /:/_               \  \:\           /  /:/_/::\           /  /:/ /:/_
  8.            /__/:/ /:/ /\          ___  \__\:\         /__/:/__\/\:\         /__/:/ /:/ /\
  9.            \  \:\/:/ /:/         /__/\ |  |:|         \  \:\ /~~/:/         \  \:\/:/ /:/
  10.             \  \::/ /:/          \  \:\|  |:|          \  \:\  /:/           \  \::/ /:/
  11.              \  \:\/:/            \  \:\__|:|           \  \:\/:/             \  \:\/:/  
  12.               \  \::/              \__\::::/             \  \::/               \  \::/  
  13.                \__\/                   ~~~~               \__\/                 \__\/    
  14.                             ___                                            
  15.                            /__/\                ___                 ___    
  16.                            \  \:\              /  /\               /  /\    
  17.                             \  \:\            /  /:/              /  /:/    
  18.                         _____\__\:\          /__/::\             /__/::\    
  19.                        /__/::::::::\         \__\/\:\__          \__\/\:\__
  20.                        \  \:\~~\~~\/            \  \:\/\            \  \:\/\
  21.                         \  \:\  ~~~              \__\::/             \__\::/
  22.                          \  \:\                  /__/:/              /__/:/
  23.                           \  \:\                 \__\/               \__\/  
  24.                            \__\/                        
  25. #include <stdio.h>
  26.  
  27. int main()
  28. {
  29.   int sequence[9];
  30.   int i;
  31.   int sequ = 1;
  32.   int ence = 0;
  33.  
  34.   printf("Введите 10 элементов последовательности : \n");
  35.   for (i = 0; i < 10; i++)
  36.     scanf("%d", &sequence[i]);
  37.  
  38.   for (i = 0; i < 9; i++)
  39.   {
  40.     if (sequence[i] == sequence[i + 1])
  41.       sequ +=1;
  42.     else
  43.     {
  44.       if (sequ > ence)
  45.         ence = sequ;
  46.      
  47.       sequ = 1;
  48.     }
  49.   }
  50.   if (sequ == 1 && ence == 1)
  51.   {
  52.     sequ = 0;
  53.     ence = 0;
  54.   }
  55.   if (sequ > ence)
  56.     printf("max = %d", sequ);
  57.   else
  58.     printf("max = %d", ence);
  59.   return 0;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement