Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
uses crt;
var st1,st2:string;
begin
clrscr;
readln(st1,st2);
if st1>st2 then writeln('Xau st1 lon hon')
else if st2>st1 then writeln('Xau st2 lon hon')
else writeln('Hai xau bang nhau');
readln;
end.
uses crt;
var kt:boolean;
st:string;
i,d:integer;
begin
clrscr;
readln(st);
d:=length(st);
kt:=true;
for i:=1 to d do
if st[i]<>st[d-i+1] then kt:=false;
if kt=true then writeln('Day la xau doi xung')
else writeln('Day khong la xau doi xung');
readln;
end.
Var a: string;
i, Dem: integer;
Begin
writeln(‘nhap xau:’);
Readln(a);
Dem:=0;
For i:=1 to length(a) do
If (‘0’<=a[i]) and (a[i]<=’9’) then Dem:= Dem+1;
Writeln(Dem);
Readln
End.
Đáp án đúng : C