write a program to print Fibonacci numbers n times
in java
Answers
Answered by
9
Answer:
Check the attachment for the answer...
Hope this helps you...
Attachments:
Answered by
4
Answer:
=> Dear ur program is here:-
public class Fibonacci {
public static void main(String[] args) {
int n = 10, t1 = 0, t2 = 1;
System.out.print("First " + n + " terms: ");
for (int i = 1; i <= n; ++i)
{
System.out.print(t1 + " + ");
int sum = t1 + t2;
t1 = t2;
t2 = sum;
}
Similar questions