Advertisement
EvgeniiKraaaaaaaav

1.9(work with array sequence)

Dec 5th, 2018
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.49 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.  
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <time.h>
  29.  
  30. int main()
  31. {
  32.   int i;
  33.   int a[10];
  34.   float mid = 0;
  35.   int sum = 0;
  36.   int max = 0;
  37.   int min = 10;
  38.  
  39.   srand(time(0));
  40.   for(i = 1; i < 11; i++)
  41.   {
  42.     a[i] = 0+rand()%10;
  43.     printf(" %d " , a[i]);
  44.     sum = sum + a[i];
  45.     mid = sum / 10;
  46.     if (a[i] > max)
  47.     {
  48.       max = a[i];
  49.     }
  50.     if (a[i] < min)
  51.     {
  52.       min = a[i];
  53.     }
  54.   }
  55.   printf("\n");
  56.   printf("Среднее арифметическое - %f \n", mid);
  57.   printf("Максимальный элемент - %d \n", max);
  58.   printf("Минимальный элемент - %d \n", min);
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement