Напишите программу, которая заполняет массив из 20 элементов случайными значениями на отрезке [1; 50] и выводит его на экран. Затем программа вычисляет количество элементов, кратных 5.
//Описание добавить не вышло на сайт, посему - в файле
#include "stdafx.h" #include <conio.h>
void swap(short &a, short &b) { short c = a; a = b;
b = c; }
void sort(short &a, short &b, short &c) { short min = a, max = c; if (min > b) min = b; if (min > c) min = c; if (max < a) max = a; if (max < b) max = b; b = a + b + c - min - max; a = min; c = max; }
if ((a1 == a2) && (b1 == b2) && (c1 == c2)) printf("Boxes are equal"); else if ((a1 <= a2) && (b1 <= b2) && (c1 <= c2)) printf_s("The first box is smaller than the second one"); else if ((a2 <= a1) && (b2 <= b1) && (c2 <= c1)) printf_s("The first box is larger than the second one"); else printf_s("Boxes are incomparable");
from random import randint
arrey,a = [],[]
for i in range (1,21):
arrey.append(randint(1,50))
for i in arrey:
if i%5 == 0:
a.append(i)
print(a)