-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion19.java
More file actions
32 lines (30 loc) · 793 Bytes
/
Question19.java
File metadata and controls
32 lines (30 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.util.Scanner;
// program to print input number of terms of Fibonacci series
class Question19 {
public static void main (String[] args) {
Scanner input = new Scanner (System.in);
int terms;
System.out.print ("Enter number of terms: ");
terms = input.nextInt ();
if (terms == 1) {
System.out.println ("Fibonacci series upto 1 term: ");
System.out.print ("0 ");
}
else if (terms == 2) {
System.out.println ("Fibonacci series upto 2 terms: ");
System.out.print ("0 1 ");
}
else if (terms > 2) {
System.out.println ("Fibonacci series upto " + terms + " terms: ");
int t = 2, f0 = 0, f1 = 1, f2;
System.out.print ("0 1 ");
while (t < terms) {
f2 = f0 + f1;
System.out.print (f2 + " ");
f0 = f1;
f1 = f2;
t++;
}
}
}
}