declare
  j binary_integer := 1;
while j<11 loop
  dbms_ouptput.put_line(j);
  j := j + 1;
end loop;
end;
/怎么会提示第三行出现错误?