oracle snake_trian

时间:2015-05-08 15:07:57   收藏:0   阅读:191

DECLARE

   TYPE arr1_tt IS TABLE OF INT INDEX BY PLS_INTEGER;

   TYPE arr2_tt IS TABLE OF arr1_tt INDEX BY PLS_INTEGER;

   arr2_inst arr2_tt;

   ROW INT := 1;

   col INT := 1;

   tmprow INT := 0;

   tot INT := 0;

BEGIN

  WHILE(ROW<=5) LOOP

    col := 1;

    tmprow := ROW;

    WHILE(col<=ROW) LOOP

       tot := tot + 1;

       arr2_inst(tmprow)(col) := tot;

       tmprow := tmprow-1;

       col := col + 1;

     END LOOP;

    ROW := ROW + 1;

  END LOOP;

  FOR i IN 1..arr2_inst.count LOOP

    FOR j IN 1..arr2_inst(i).count-i+1 LOOP

       dbms_output.put_line(arr2_inst(i)(j)||‘‘);

    END  LOOP;

 END LOOP;

END;


  


原文:http://friendsforever.blog.51cto.com/3916357/1649549

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!