不是VIP会员,不能显示答案

题目解答

题目:
program xx301;
var
s:string;
i,k,j:integer;
begin
i:=1;
s:='123!*&jhfokillltlllabethe';
k:=length(s);
repeat
k:=k-i;
inc(i);
write(s[k]);
until k-i<0;
end.
输出:hello!
考点:
分析:
解答:
评论:
老师: