B2 tong <- 0;
B3 in tong
B4 nếu 60 mod a[i]=0; thì tong <- tong + a[i]
B5 nhập n
Sắp xếp thuật toán giải bài toán trên
Viết chương trình Pascal hoàn chỉnh
Program HOC24;
var i,n: integer;
a: array[1..1000] of integer;
begin
write('Nhap so nguyen N: '); readln(n);
for i:=1 to n do
begin
write('A[',i,']='); readln(a[i]);
end;
t:=0;
for i:=1 to n do if 60 mod a[i]=0 then t:=t+a[i];
write('Ket qua la: ',t);
readln
end.