Ôn tập cuối năm

PN

nhập mã gồm n số nguyên từ bàn phím ,xuất mãng vừa nhâp ,tìm và in ra giá trị lớn,bé nhất trg mãng 

H24
8 tháng 5 2022 lúc 14:54

refer

uses crt;

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

n,i,max,min:integer;

begin

clrscr;

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

for i:=1 to n do

begin

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

end;

max:=a[1];

min:=a[1];

for i:=1 to n do

begin

if max<a[i] then max:=a[i];

if min>a[i] then min:=a[i];

end;

writeln('Vi tri cua so lon nhat la: ');

for i:=1 to n do

if max=a[i] then write(i:4);

writeln;

writeln('Vi tri cua so nho nhat la: ');

for i:=1 to n do

if min=a[i] then write(i:4);

 

readln;

Bình luận (0)

Các câu hỏi tương tự
PN
Xem chi tiết
LT
Xem chi tiết
VT
Xem chi tiết
DL
Xem chi tiết
HN
Xem chi tiết
NT
Xem chi tiết
NL
Xem chi tiết
DT
Xem chi tiết
TT
Xem chi tiết