Chương trình nhập n và mảng hay nhập mảng chưa biết số hạng tử v
#include <bits/stdc++.h>
using namespace std;
long long a[1000],n,i,ln,t1,dem,s;
int main()
{
cin>>n;
for (i=1; i<=n; i++) cin>>a[i];
ln=a[1];
for (i=1; i<=n; i++) ln=max(ln,a[i]);
cout<<ln<<endl;
t=0;
for (i=1; i<=n; i++) if (a[i]%2==0) t=t+a[i];
cout<<t<<endl;
dem=0;
for (i=1; i<=n; i++) if (a[i]<0) dem++;
cout<<dem<<" ";
s=1;
for (i=1; i<=n; i++)
if ((a[i]%3==0) and (a[i]>0)) s=s*a[i];
cout<<s;
return 0;
}
Var a:array[1..200] of integer;
i,n,max,s1,dem,s2:integer;
begin
write('Nhap so luong phan tu cua mang n = ');readln(n);
for i:=1 to n do
begin
write('Nhap phan tu thu ',i,' = ');readln(a[i]);
end;
max:=a[1];
for i:=2 to n do
if a[i] > max then max:=a[i];
for i:=1 to n do
begin
if a[i] mod 2 = 0 then s1:=s1+a[i];
end;
for i:=1 to n do
begin
if a[i] < 0 then dem:=dem + 1;
end;
s2:=1;
for i:=1 to n do
begin
if (a[i] > 0) and (a[i] mod 3 = 0) then s2:=s2*a[i];
end;
writeln('gia tri lon nhat trong mang la ',max);
writeln('tong cac so chan la ',s1);
writeln('Co ',dem,' so am');
write('tich cac so duong va chia het cho 3 la ',s2);
end;
readln;
end.