PL/SQL program to display your name
Code
declare n number; i number; begin n:= &n; for i in 1..10 loop dbms_output.put_line(n||' x '||i||' = '||n*i); end loop; end; /
output
5 x 1 = 5 --- here i had selected input as 5 5 x 2 = 10 5 x 3 = 15 5 x 4 = 20 5 x 5 = 25 5 x 6 = 30 5 x 7 = 35 5 x 8 = 40 5 x 9 = 45 5 x 10 = 50 Statement processed.