Mình có bài này mình hiểu nhưng chưa biết cách mong các bn giải ạ: Nhập vào một mảng a,sắp xếp mảng a theo thứ tự tăng dần,in ra thứ tự tăng dần,nhập thêm vào một số x,sắp xếp lại các phần tử và số x theo thứ tự tăng dần và in ra vị trí của X
Vd input: 6
3 9 7 56 21 30
X=10
output:3 7 9 21 30 56
4
uses crt;
var a:array[1..10000] of integer;
n,i,j,t,x:integer;
begin
clrscr;
write(‘Nhap so luong phan tu: ‘); readln(n);
for i:=1 to n do
begin
write(‘Nhap so thu ‘,i,’: ‘); readln(a[i]);
end;
for i:=1 to n-1 do
for j:=i+1 to n do
if a[i]>a[j] then
begin
t:=a[i];
a[i]:=a[j];
a[j]:=t;
end;
write(‘Day so tang dan: ‘);
for i:=1 to n do write(a[i],’ ‘); writeln;
write(‘Nhap X: ‘); readln(x);
a[n+1]:=high(integer);
i:=0;
while (x>a[i]) or (x>a[j]) and (a[i]>x) and (a[j]>x) do inc(i);
for i:=1 to n-1 do
for j:=i+1 to n do
if a[i]>a[j] then
begin
t:=a[i];
a[i]:=a[j];
a[j]:=t;
end;
writeln(‘Vi tri cua ‘,x,’: ‘,i);
readln;
end.
uses crt;
var i,j,n,x,t:longint; a:array[1..1000]of longint;
begin
clrscr;
write(‘Nhap so luong phan tu: ‘);readln(n);
for i:=1 to n do
begin
write(‘Nhap phan tu thu ‘,i,’: ‘);readln(a[i]);
for j:=1 to i do
if a[i]<a[j] then
begin t:=a[i]; a[i]:=a[j]; a[j]:=t; end;
end;
write(‘Mang tang dan: ‘);
for i:=1 to n do write(a[i],’ ‘); writeln;
write(‘Nhap x: ‘);readln(x); a[n+1]:=x;
for i:=1 to n+1 do
for j:=1 to i do
if a[i]<a[j] then
begin t:=a[i]; a[i]:=a[j]; a[j]:=t; end;
for i:=1 to n+1 do if a[i]=x then t:=i;
writeln(‘Vi tri x: ‘,t);
readln
end.