Lập trình đơn giản

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

1.Viết chương trình tìm GTLN của dãy số nguyên

2.Nhập chiều cao cho 3 bạn và đưa ra bạn có chiều cao lớn nhất

Nguyễn Lê Phước Thịnh
1 tháng 4 2021 lúc 22:39

1: 

uses crt;

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

i,n,max: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];

for i:=1 to n do 

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

writeln(max);

readln;

end.

datfsss
1 tháng 4 2021 lúc 21:21

program oken;

uses crt;
var a: array [1..100] of integer;
    i,n,max:integer;
begin
        clrscr;
        write('nhap so n: '); readln(n);
        for i:=1 to n do
                begin
                        write('a[',i,']: ');
                        readln(a[i]);
                end;

b,

program aicaohon;

uses crt;

var Nhi, Tram,An:real;

begin

clrscr;

write('nhap chieu cao cua Nhi=');readln(Nhi);

write('nhap chieu cao cua Tram='); readln(Tram);

if Nhi>Tram then writeln('Ban Nhi cao hon');

if Tram>Nhi then writeln('Ban Tram cao hon')

if An>Tram>Nhi then writeln( 'Ban An cao nhat')

else writeln('An cao nhat');

readln

end.

        max:=a[1];
        for i:=2 to n do
                if a[i]>max then
                        max:=a[i];
        writeln('Max: ',max);
        readln;
end.

Nguyễn Lê Phước Thịnh
1 tháng 4 2021 lúc 22:41

2:

uses crt;

var a:array[1..3]of real;

i:integer;

max:real;

begin

clrscr;

for i:=1 to 3 do

 begin

write('Nhap chieu cao cua ban thu ',i,':'); readln(a[i]);

end;

max:=a[1];

for i:=1 to 3 do 

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

writeln(max);

readln;

end.


Các câu hỏi tương tự
Bùi Thị Ngọc Huế
Xem chi tiết
Nhật Linh Đặng
Xem chi tiết
Nguyễn Linh
Xem chi tiết
Yến Phạm
Xem chi tiết
Thảo Nguyên 36-88
Xem chi tiết
Lê Triệu Vy
Xem chi tiết
haizzz!!
Xem chi tiết
phamthiminhanh
Xem chi tiết
dinhnguyentuhuy
Xem chi tiết