Dùng CT Free IDE Pascal nhập vào một mảng một chiều hãy in ra màn hình số lần xuất hiện của a[i] có trong mảng Test Vd: 1 2 9 2 1 8 in ra 2 2 0 0 0 0

1 câu trả lời

uses crt;
var a,rq:array[1..100] of integer;
    i,temp,j,count,n:integer;
Begin
 clrscr;
 write('Nhap n: ');
 readln(n);
 for i:=1 to n do readln(a[i]);
 for i:=1 to n do
 begin
  temp:=a[i];
  count:=0;
  for j:=1 to n do if temp = a[j] then inc(count);
  rq[i]:=count;
 end;
 for i:=1 to n do write(rq[i],' ');
 readln;
end.

Câu hỏi trong lớp Xem thêm