Here you will get pl/sql program to find factorial of a number.
We can calculate factorial of a number by multiplying it with all the numbers below it.
For example factorial of 5 = 5 x 4 x 3 x 2 x 1 = 120.
PL/SQL Program to Find Factorial of a Number
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
declare n number; fac number:=1; i number; begin n:=&n; for i in 1..n loop fac:=fac*i; end loop; dbms_output.put_line('factorial='||fac); end; / |
Output
Enter value for n: 10
old 7: n:=&n;
new 7: n:=10;
factorial=3628800
Hi,
My name is Shiva. I have been lately working in PL/SQL. I have few doubts that I wanna clarify. How to use multiple procedures in same file(.sql format). I get error every time I execute it. But when I copy the same procedure separately in different file, it works. Could you give some examples of the same?
i cant understand what are you saying???plzz give more information about this content.
What is programming uses
sir please upload the pl/sql program for multiple of any number with function and procedure ….
error in your code do it correct n=&n has mistake please correct and update it
oracle 10g use n:=:n;
Thank you 🙏🏻👍
At the end of the file, you can use / to separate your procedures.
code not working change it
Sir plz upload PL/SQL program to find largest of 2 numbers using if statement
What happened fac number=2;