You are viewing a single comment's thread. Return to all comments →
SET SERVEROUTPUT ON; BEGIN FOR i IN 1..20 LOOP DBMS_OUTPUT.PUT_LINE(RPAD('* ', 2*i, '* ')); END LOOP; END; /
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
SET SERVEROUTPUT ON; BEGIN FOR i IN 1..20 LOOP DBMS_OUTPUT.PUT_LINE(RPAD('* ', 2*i, '* ')); END LOOP; END; /