level 3
uses crt;
var i,j,k:longint;
s:string;
ch:char;
begin
while j=j do
begin
clrscr;
readln(s);
for i:=1 to length(s) do
begin
if s[i]<>' ' then
begin
textcolor(lightred);
gotoxy(30+i,11);
write(s[i]);
delay(300);
textcolor(yellow);
gotoxy(30+i,11);
write(s[i]);
delay(150);
end;
end;
textcolor(white);
ch:=readkey;
if ch='p' then break;
end;
end.
2018年02月12日 06点02分