var mas1, mas2: array[0..9] of integer; t, k, i, j: integer; begin readln(t); readln(k); for j := 0 to 1 do begin if (j = 1) then writeln(); for i := 0 to 9 do begin if(j = 0) then begin mas1[i] := random(100); write(mas1[i], ' '); if mas1[i] > t Then mas1[i] := mas1[i] + 4; end else begin mas2[i] := random(100); write(mas2[i], ' '); if mas2[i] > 10 * K Then mas2[i] := mas2[i] + K; end; end; for i := 0 to 9 do if (j = 0) then write(mas1[i]) else write(mas2[i]); writeln(); end; readln(); end.
#include <iostream>
using namespace std;
int main ()
{
int salary;
int quantity = 0;
double amount = 0;
double average_salary = 0;
for (int i = 0; i < 5; i++)
{
cin >> salary;
if (salary >= 0 && salary <= 80)
{
amount += salary;
quantity++;
}
}
average_salary = amount / quantity;
cout << (average_salary);
}
Объяснение:
#include <iostream> // Библиотека ввода - вывода
using namespace std; // Пространство имен
int main ()
{
int salary; // Создание целочисленной переменной, отвечающей за вводимые с клавиатуры числа
int quantity = 0; // Создание целочисленной переменной, хранящей количество работников, попадающих под условие
double amount = 0; // Создание вещественной переменной для нахождения суммы зарплат, попадающих под условие
double average_salary = 0; // Создание вещественной переменной, хранящей среднюю зарплату
for (int i = 0; i < 5; i++) // Цикл выполняется 5 раз
{
cin >> salary; // Вводим число с клавиатуры
if (salary >= 0 && salary <= 80) // Если 0 <= значение переменной salary <= 80
{
amount += salary; // Сумма = сумма + вводимое число
quantity++; // К переменной, хранящей количество, прибавляем единицу
}
}
average_salary = amount / quantity; // Вычисление средней зарплаты: средняя зарплата = сумма ÷ количество
cout << average_salary; // Вывод ответа
}
begin
readln(t);
readln(k);
for j := 0 to 1 do begin
if (j = 1) then writeln();
for i := 0 to 9 do begin
if(j = 0) then begin
mas1[i] := random(100);
write(mas1[i], ' ');
if mas1[i] > t Then mas1[i] := mas1[i] + 4;
end
else
begin
mas2[i] := random(100);
write(mas2[i], ' ');
if mas2[i] > 10 * K Then
mas2[i] := mas2[i] + K;
end;
end;
for i := 0 to 9 do
if (j = 0) then
write(mas1[i])
else
write(mas2[i]);
writeln();
end;
readln();
end.
))