#1926: ??????


zhugeliang (红烧冰激凌)

學校 : 泰安市实验学校
編號 : 6091
來源 : [219.146.155.245]
最後登入時間 :
2009-05-16 08:31:31
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [219.146.155.245] | 發表日期 : 2009-05-09 10:38

program suanshu;
var
  s:string;
  count,i:integer;
  zm:set of char;
begin
  zm:=['A'..'Z','a'..'z'];
  while not eof do
  begin
    count:=0;
    readln(s);
    for i:=1 to length(s)-1 do
      if (s[i] in zm) and not (s[i+1] in zm) then inc(count);
    writeln(count);
  end;
end.

第10个我是1他是2

 
ZeroJudge Forum