Bạn chưa đăng nhập. Vui lòng đăng nhập để hỏi bài

Những câu hỏi liên quan
duc tran
Xem chi tiết
Phạm Tiến Vượng
Xem chi tiết
Nhân Nguyễn
Xem chi tiết
Nguyễn Lê Phước Thịnh
3 tháng 6 2020 lúc 16:23

const fi='baitap.inp';

fo='ketqua.out';

var f1,f2:text;

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

i,n,t:integer;

begin

assign(f1,fi); reset(f1);

assign(f2,fo); rewrite(f2);

n:=0;

while not eoln(f1) do

begin

inc(n);

read(f1,a[n]);

end;

t:=0;

for i:=1 to n do

if a[i]>=0 then t:=t+a[i];

writeln(f2,t);

close(f1);

close(f2);

end.

Mei Mei
Xem chi tiết
Hồ Thị Huyền Trang
Xem chi tiết
Nguyễn Lê Phước Thịnh
7 tháng 5 2021 lúc 22:17

const fi='songuyen.inp'

fo='tong.out'

var f1,f2:text;

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

n,i,dem:integer;

begin

assign(f1,fi); reset(f1);

assign(f2,fo); rewrite(f2);

n:=0;

while not eof(f1) do 

  begin

n:=n+1;

read(f1,a[n]);

end;

dem:=0;

for i:=1 to n do 

  if a[i] mod 2=0 then inc(dem);

writeln(f2,dem);

close(f1);

close(f2);

end.

Nguyễn Bình Thiên
Xem chi tiết
Nguyễn Bình Thiên
Xem chi tiết
Nguyễn Bình Thiên
Xem chi tiết
Louis Kai
Xem chi tiết