记录编号 249420 评测结果 AAAAAAAAAA
题目名称 [暑假培训2012] 单词缩写 最终得分 100
用户昵称 Gravatar北秋悲 是否通过 通过
代码语言 Pascal 运行时间 0.000 s
提交时间 2016-04-12 18:33:43 内存使用 0.00 MiB
显示代码纯文本
var
a,c:string;
d:array[1..100] of string;
b:char;
i,j,t,s,x:integer;
begin
assign(input,'abbreviation.in');
assign(output,'abbreviation.out');
reset(input);
rewrite(output);

readln(t);
for i:=1 to t do
 begin
 readln(a);
 s:=length(a);
 a:=upcase(a);
 for j:=1 to s+1 do
  begin
  if (a[j]=' ')or (j=s+1) then
  begin
   if (c='THE') or (c='FOR') or(c='AND') or (length(c)<3) then
   else
   d[i]:=d[i]+c[1];

c:='';
end
  else
  c:=c+a[j];

 end;
 a:='';
end;
for i:=1 to t do

writeln(d[i]);
close(input);
close(output);
 end.