Viết công thức nhập từ bàn phím 1 xâu kí tự s (s<=200) in xâu và nhập ra màn hình 15/08/2021 Bởi Amaya Viết công thức nhập từ bàn phím 1 xâu kí tự s (s<=200) in xâu và nhập ra màn hình
uses crt;var s:string;begin clrscr; repeat begin write(‘Nhap xau s: ‘); readln(s); end; until length(s)<=200; write(s); readlnend. Bình luận
uses crt;
var s:string;
begin
clrscr;
repeat
begin
write(‘Nhap xau s: ‘);
readln(s);
end;
until length(s)<=200;
write(s);
readln
end.