Skip to main content

Fibonacci series

 Fibonacci series

Code:

import java.util.Scanner;

class Main{


    public static void main(String anyVar[]){
        Scanner sc=new Scanner(System.in);
        System.out.println("Enter any number till that yu want Fibonacci series:");
        int num=sc.nextInt();
        System.out.println("Fibonacci series till "+num+"is as follows:");
        int num1=1,num2=1,num3=0;
        for(int i=0;i<num;i++){
           if(i==0||i==1)
            System.out.print(1);
            else{
                //Fibonacci number is sum of previous two Fibonacci number
                num3=num1+num2;
                num1=num2;
                num2=num3;
                
                System.out.print(" "+num3);
            }
           
        }
   
 }


Output:

Enter any number till that yu want Fibonacci series:                                                                          

12                                                                                                                            

Fibonacci series till 12is as follows:                                                                                        

1 1 2 3 5 8 13 21 34 55 89 144  

Smoke:




 

Comments

Popular posts from this blog

Naming Convention

  Naming Convention : A naming convention is  a convention for naming things: Please find below the table for naming conventions: Naming Convention Format Example Camel Case camelCase 🐪aBcD Kebab Case kebab-case 🍢a-b-c-d Snake Case snake_case 🐍a_b_c_d Pascal Case PascalCase 🧑‍🦳AbCd Flat Case flatcase 📏abcd Upper Flat Case UPPERFLATCASE ABCD Screaming Snake Case SCREAMING_SNAKE_CASE 🐍A_B_C_D Camel Snake Case camel_Snake_Case 🐪🐍ab_Cd Pascal Snake Case Pascal_Snake_Case Ab_Cd Train Case Train-Case 🚃Ab-Cd Cobol Case COBOL-CASE 🍢AB-CD
How to run lex yacc programs on win 10 In short: For Lex steps to run: lex lex7.l gcc lex.yy.c a     For YACC steps to run: lex simple_compound.l yacc -d simple_compound.y gcc lex.yy.c y.tab.c a                          A.Lex 1. download flex for windows http://flex-windows-lex-and-yacc.software.informer.com/2.5/ 2. install it locatin:  C:\Flex Windows\ 3.open cmd 4.You need to change location as follows:  cd C:\Flex Windows\EditPlusPortable 5. Steps to run : lex lex7.l gcc lex.yy.c a Output : Word Count : 13 Char Count : 80 Line Count : 7 codes : lex7.l %{ /* *Program to count no of characters, words and lines */ #include<stdio.h> #include<string.h> int c=0,w=0,l=0; %} %% [\t ]+              /* ignore whitespace */ [a-zA-z]+  ...

Simple java code

  Simple java code class Main{ /*Every application in Java must contain the main method. The Java compiler starts executing the code from the main method*/      public static void main(String anyVar[]){      System.out.println("Simple java code");       } } Output: Simple java code Screenshot: Online compiler:https://www.onlinegdb.com/online_java_compiler #happyCoding💁👍