This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*1. Criar um bloco PL/SQL anônimo para imprimir a tabuada abaixo:*/ | |
DECLARE | |
VN CONSTANT NUMBER(2):=5; | |
BEGIN | |
FOR i IN 1..10 LOOP | |
SYS.DBMS_OUTPUT.PUT_LINE(VN || ' X ' || i ||'='|| VN*i); | |
END LOOP; | |
END; |