Notification texts go here Contact Us Buy Now!

write a pl/sql program to generate fibonacci series

write a pl/sql program to generate fibonacci series
Estimated read time: 0 min
Please wait 0 seconds...
Scroll Down and click on Go to Link for destination
Congrats! Link is Generated

write a pl/sql program to generate fibonacci series

Code

  declare
-- declare variable first = 0,
-- second = 1 and temp of datatype number
first number := 0;
second number := 1;
temp number;

n number := 5;
i number;

begin

	dbms_output.put_line('Series:');

--print first two term first and second
	dbms_output.put_line(first);
	dbms_output.put_line(second);

-- loop i = 2 to n
	for i in 2..n
	loop
		temp:=first+second;

first := second;
second := temp;

--print terms of fibonacci series
	dbms_output.put_line(temp);
end loop;

end;
--Program End

  

output

Series:
0
1
1
2
3
5

Statement processed.

  

Getting Info...

Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.