Write a program in java to print all terms of fibonacci series before the number inputted by the user in reverse order without using arrays class 9th program
Answers
Answered by
0
Let's see the fibonacci series program in java without using recursion.
class FibonacciExample1{
public static void main(String args[])
{
int n1=0,n2=1,n3,i,count=10;
System.out.print(n1+" "+n2);//printing 0 and 1.
for(i=2;i<count;++i)//loop starts from 2 because 0 and 1 are already printed.
{
n3=n1+n2;
Answered by
0
Answer:
ஔ க சுட்டி விகடன் மேடை நோக்கி ஓடி மாணவர்கள் மற்றும்
Similar questions
Social Sciences,
4 months ago
Math,
4 months ago
Science,
9 months ago
English,
9 months ago
Math,
1 year ago