#include <iostream>
#include <iterator>
#include <vector>
using namespace std;
int main() {
int n = 5;
int m = 6;
vector<vector<int>> a(n, vector<int>(m));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j)
cin >> a[i][j];
}
vector<double> ans(m);
for (int i = 0, q = 0; i < m; ++i, ++q) {
int sum = 0;
int cnt = 0;
for (int j = 0; j < n; ++j) {
if (a[j][i] < 0) {
sum += a[j][i];
++cnt;
}
}
if (sum)
ans[q] = sum / (double)cnt;
}
copy(ans.cbegin(), ans.cend(), ostream_iterator<double>(cout, " "));
}
Поделитесь своими знаниями, ответьте на вопрос:
Составить программу подсчета кол-ва положительных отрицательных чисел в произвольном числовом ряду решить в паскале
uses crt;
var a: array [1..5] of integer;
otr,pol,i: byte;
begin
for i:=1 to 5 do begin
a[i]:=random(10)-5;
write(a[i]:3);
if a[i]>0 then pol:=pol+1 else
if a[i]<0 then otr:=otr+1;
end;
writeln;
writeln('Положительных: ',pol,'; Отрицательных: ',otr);
end.