Валерьевна1601
?>

Ввести c клавиатуры массив из 5 элементов, найти среднее арифметическое всех элементов массива. нужно

Информатика

Ответы

siyaniemoskva

program q; var m: array[1..5] of integer; sum, j: integer; begin sum: =0 for j=1 to 5 do begin write('введите ',j ,'элемент массива: '); readln(m[j]); sum: =sum+m[j] end; sum: =sum/5; writeln(sum) end.

zolotayaoxana1982

Код:

#include <fstream>#include <cmath>void first_task(std::ifstream &cin, std::ofstream &cout) {    int n, k = 1; cin >> n >> k;    cout << n / k;}void second_task(std::ifstream &cin, std::ofstream &cout) {    int N; cin >> N;    cout << 2 * (N / 2 + 1);}void third_task(std::ifstream &cin, std::ofstream &cout) {    int N; cin >> N;    auto t = [](int c, int N){return c / (int) pow(10, N) % 10;};    cout << t(N, 2) + t(N, 1) + t(N, 0);}void fourth_task(std::ifstream &cin, std::ofstream &cout) {    int N; cin >> N;    for (int it = 0; it < log2(N); ++it) {        cout << pow(2, it) << " ";    }}void fifth_task(std::ifstream &cin, std::ofstream &cout) {    int h, a, b;    cin >> h >> a >> b;    int h0 = h - a, dx = a - b;    int g = 1 + h0/dx + (h0%dx + dx - 1)/dx;    if (g < 0)        cout << INFINITY;    else        cout << g;}int main() {    std::ifstream cin("input.txt");    std::ofstream cout("output.txt");    // Choose your function    int N = 0; // 0-4    void (*tasks[5]) (std::ifstream &, std::ofstream &) = {first_task, second_task, third_task, fourth_task, fifth_task};    tasks[N](cin, cout);    return 0;}
oledrag7
//написано на  (си/си++) #include < iostream> #include < stdio.h> #include < time.h> int main(){ setlocale(lc_all,""); srand(time(null)); int arr[10]; int mul = 1; for (int i = 0; i < 10; ++i){     arr[i] = rand() % 1000;     if (arr[i] %2 == 0){         mul *= arr[i];         std: : cout < < arr[i] < < "\n";       } } std: : cout < < "произведение четных чисел: " < < mul; system("pause"); return 0; }

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Ввести c клавиатуры массив из 5 элементов, найти среднее арифметическое всех элементов массива. нужно
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

damir
Maionova
vypolga1347
druzjkinaas22
lebedev815
fil-vasilij90
Elshel8694
kristi-a-90
neganovaarxi
Татьяна902
Шарабанов
Belov
Vova220
Иванникова736
Татьяна-Мария