PL/SQL面試題

  PL/SQL面試題 2010-04-29 14:25 1、    求1-100之間的素數 declare fag boolean:=true; begin for i in 1..100 loop for j in 2..i-1 loop if mod(i,j)=0 then fag:=false; end if; end loop; if fag then dbms_output.put_l
相關文章
相關標籤/搜索