Odpowiedź:
program PodzielnePrzez5;
const
n = 10;
var
i, licznik: Integer;
tablica: array[1..n] of Integer;
begin
licznik := 0;
for i := 1 to n do
read(tablica[i]);
if tablica[i] mod 5 = 0 then
licznik := licznik + 1;
end;
writeln('Liczba liczb podzielnych przez 5 w tablicy: ', licznik);
end.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
Odpowiedź:
program PodzielnePrzez5;
const
n = 10;
var
i, licznik: Integer;
tablica: array[1..n] of Integer;
begin
licznik := 0;
for i := 1 to n do
begin
read(tablica[i]);
if tablica[i] mod 5 = 0 then
licznik := licznik + 1;
end;
writeln('Liczba liczb podzielnych przez 5 w tablicy: ', licznik);
end.