FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

import java.util.*; public class Fibonacci { public static void main(String[] args) { int n , t1 = 0, t2 = 1; System.out.println("Please Input your number to print Fibonacci Series"); Scanner sc= new Scanner(System.in); n= sc.nextInt(); System.out.print("First " + n + " terms: "); for (int i = 1; i

Back | FazBrowse Home | New Git URL