比赛 20090923练习赛 评测结果 WAWWW
题目名称 逻辑表达式 最终得分 20
用户昵称 ybh 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-09-23 22:00:40
显示代码纯文本
program luojibiaodashi;
var
  s:string;
  i:integer;
  bool,b:boolean;
begin
  assign(input,'expressa.in');
  reset(input);
  assign(output,'expressa.out');
  rewrite(output);
  readln(s);
  bool:=true;
  for i:=1 to length(s) do
  begin
    if ((s[i]>='a') and (s[i]<='z')) or ((s[i]>='A') and (s[i]<='Z'))
      or (s[i]='~') or (s[i]='*') or (s[i]='+') or (s[i]='(') or (s[i]=')')
    then b:=true
    else b:=false;
    if b=false
      then bool:=false
  end;
  if bool
    then writeln('yes')
    else writeln('no');
  close(input);
  close(output)
end.