ЗАДАНИЕ 1 Бит и Ада с увлечением изучают информатику. Подскажи им, как называлась настольная механическая вычислительная машина, предназначенная для сложения, вычитания, точного умножения и деления:
Program n1; Uses Crt; Var c: array[1..1000] of integer; n, i, null, otric, polozhit :integer; Begin writeln('Razmer massiva = '); Readln(n);
for i:=1 to n do begin c[i]:=random(40) - 20; write(c[i]:4); end;
writeln();
otric:=0; polozhit:=0; null:=0; for i:=1 to n do begin if (c[i]<0) then otric:=otric+1; if (c[i]>0) then polozhit:=polozhit+1; if (c[i]=0) then null:=null+1; end; writeln('Kol-vo chisel < 0: ', otric); writeln('Kol-vo chisel > 0: ', polozhit); writeln('Kol-vo chisel = 0: ', null); End.
#include <stdlib.h>
#include <limits.h>
using namespace std;
int main()
{
int i,n,k,l,y,j,m;
cout << "сколько чисел?" << endl;
cin >> n;
y=INT_MAX;
int a[n];
for (i=0;i<n;i++)
cin >> a[i];
for (i=0;i<n;i++){
k=0;
l=0;
for (j=0;j<i;j++)
k=k+a[j];
for (j=i+1;j<=n;j++)
l=l+a[j];
if (abs(k-l) < y) {
y=abs(k-l);
m=i;}
}
cout << m;
}
Если я правильно понял - то вот.
Uses Crt;
Var
c: array[1..1000] of integer;
n, i, null, otric, polozhit :integer;
Begin
writeln('Razmer massiva = '); Readln(n);
for i:=1 to n do begin
c[i]:=random(40) - 20;
write(c[i]:4);
end;
writeln();
otric:=0; polozhit:=0; null:=0;
for i:=1 to n do begin
if (c[i]<0) then otric:=otric+1;
if (c[i]>0) then polozhit:=polozhit+1;
if (c[i]=0) then null:=null+1;
end;
writeln('Kol-vo chisel < 0: ', otric);
writeln('Kol-vo chisel > 0: ', polozhit);
writeln('Kol-vo chisel = 0: ', null);
End.