Advertisement
Shailrshah

Multiplying Two User-Inputed Numbers

Oct 26th, 2013
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.14 KB | None | 0 0
  1. DECLARE
  2.         a NUMBER(8,2):= &a;
  3.         b NUMBER(8,2):= &b;
  4. BEGIN
  5.         DBMS_OUTPUT.put_line(a || '*' || b || '=' || a*b);
  6. END;
  7. /
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement