Viết chương trình nhập vào số n (0

Viết chương trình nhập vào số n (0 { "@context": "https://schema.org", "@type": "QAPage", "mainEntity": { "@type": "Question", "name": " Viết chương trình nhập vào số n (0

0 bình luận về “Viết chương trình nhập vào số n (0<n<1000) và in ra n số hoàn thiện đầu tiên”

  1. Bài 1:

    uses crt;

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

    i,n,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(‘Gia tri lon nhat la: ‘,max);

    writeln(‘Gia tri nho nhat la: ‘,min);

    readln;

    end.

    Bình luận
  2. ài 1:

    uses crt;

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

    i,n,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(‘Gia tri lon nhat la: ‘,max);

    writeln(‘Gia tri nho nhat la: ‘,min);

    readln;

    end.WHI,E

    Bình luận

Viết một bình luận