Wednesday, January 9, 2019

Write a Java Program to print Fibonacci  series up to 10
   
   public class Fibonacci {
public static void main(String[] args) {
int num = 10; 
System.out.println("*****Fibonacci Series*****");
int f1=0, f2=0, f3=1;
for(int i=1;i<=num;i++){
if(f2<=10) {
System.out.print(" "+f2+" ");
}
f1 = f2;
f2 = f3;
f3 = f1 + f2;
}
}
   }
Output:
*****Fibonacci Series*****

 0  1  1  2  3  5  8 

0 comments:

Post a Comment

selenium-repo by venu

Blog helps to a student or IT employee to develop or improve skills in Software Testing.
For Online Classes Email us: gadiparthi122@mail.com

Followers

About Me

My photo
Hyderabad, Andhra Pradesh, India
I am Automation Testing Professional. I have completed my graduation in B.Tech (Computers) from JNTU Hyderabad and started my career in Software Testing accidentally since then, I passionate on learning new technologies

Contact Form

Name

Email *

Message *

Popular Posts