过程里的参数不能指定其长度,改成下面的就可以了:
create or replace procedure prc_two(a in integer,c out char) as
begin
  if a=5 then
    c:='a大于b';
  else
    c:='a小于 b';
  end if;
end prc_two;