Lập trình bài toán: Nhập từ bản phím xâu S có độ dài bất kì; - Xóa các dấu cách thừa ở đầu xâu, cuối xâu và giữa xâu nếu có. - In ra màn hình xâu đảo ngược của xâu trên! Ví dụ: nhập vào xâu 'abcd' chương trình sẽ in ra xâu đảo ngược là: 'dcba'.

2 câu trả lời

uses crt;

var S : string; i : byte;

begin

clrscr;

write('Nhap xau S : '); readln(S);

while S[1] = ' ' do

    delete(S, 1, 1);

while S[length(S)] = ' ' do

    delete(S, length(S), 1);

i := 1; while i < length(S) do

    if (S[i] = ' ') and (S[i + 1] = ' ') then

        begin

            delete(S, i, 1);

            i := i;

        end

    else i := i + 1;

write('Xau dao nguoc : ');

for i := length(S) downto 1 do write(S[i]);

end.

Code chạy Pascal:

var s,s1,tg:string;
i:longint;
function dn(x:string):string;
begin
dn:='';
for i:=1 to length(x) do
dn:=x[i]+dn;
end;
begin
write('nhap xau:');
read(s);
while s[1]=' ' do
delete(s,1,1);
while s[length(s)]=' ' do
delete(s,length(s),1);
while pos(' ',s)<>0 do
delete(s,pos(' ',s),1);
tg:=dn(s);
writeln('xau khi xoa dau cach:',s);
write('xau khi dao nguoc:',tg);
readln;
end.

Câu hỏi trong lớp Xem thêm

giup e voi I/ Supply the correct form of the verbs in brackets 1. You (think) ……………………… collecting stamps costs much money? 2. Every year, my mother (give) ……………………… me a nice doll on my birthday. 3. Jenny says she loves collecting pens but she (not/continue) ……………………… this hobby from next year. 4. If you wash your hands more, you (have)……………………. less chance of catching flu. 5. Getting plenty of rest is very good. It (help)…………………. you to avoid depression. 6. Mr. John (be) ……………………… principal of our school since last year. 7. I (see) ……………………… a car accident on this corner yesterday. 8. We like (come)……………………to school by bus, but we hate (stand)………………………. and (wait) …………………… in the rain. 9. ……………………… (you/ ever/ meet) anyone famous? 10. My mother (come) ……………………… to stay with us next weekend. 11. When he lived in Manchester, he (work) ……………………… in a bank. 12. We (be) ……………………… students for four years. 13. We are planting trees around our school now. Our school (be) ……………………… surrounded by a lot of green trees. 14. What ……………………… your father usually ……………………… (do) in the evenings? 15. My sister likes (cook) ……………………… very much. She can cook many good foods. 16. My father says when he's retired, he (go) …………………… back to his village to do the gardening. 17. They want (buy) ……………………… some meat for dinner. 18. Linh is my best friend. We (know) ……………………… each other for 5 years. 19. I enjoy (fish) ……………………… because it is relaxing. 20. How about (go) ……………………… to the movie theatre?

3 lượt xem
1 đáp án
17 giờ trước