Bài 11: Kiểu mảng

DN

Giúp mình với mn ơi Cảm ơn trước

NT
5 tháng 5 2021 lúc 13:06

uses crt;

const fi='dlra.txt'

var a:array[1..100]of integer;

i,n,h:integer;

f1:text;

begin

clrscr;

write('Nhap n='); readln(n);

for i:=1 to n do

 begin

write('A[',i,']='); readln(a[i]);

end;

assign(f1,fi); rewrite(f1);

h:=0;

for i:=1 to n do 

  if a[i] mod 2=0 then 

begin

write(f1,a[i]:4);

h:=h+a[i];

end;

writeln(f1);

writeln(f1,h);

close(f1);

readln;

end.

Bình luận (0)

Các câu hỏi tương tự
H24
Xem chi tiết
AV
Xem chi tiết
MQ
Xem chi tiết
PA
Xem chi tiết
PD
Xem chi tiết
NT
Xem chi tiết
QL
Xem chi tiết
NC
Xem chi tiết
NT
Xem chi tiết