Trong bài viết này, chúng ta sẽ hiểu cách tìm tổng chẵn của chuỗi Fibonacci cho đến số N. Chuỗi Fibonacci là dãy số được tạo thành bởi tổng của hai số nguyên trước đó của nó. Chuỗi Fibonacci chẵn là tất cả các số chẵn của chuỗi Fibonacci.
Dưới đây là một minh chứng về điều tương tự -
Chuỗi Fibonacci tạo ra số tiếp theo bằng cách thêm hai số trước đó. Chuỗi Fibonacci bắt đầu từ hai số - F0 &F1. Các giá trị ban đầu của F0 &F1 có thể được lấy tương ứng là 0, 1 hoặc 1, 1.
Fn = Fn-1 + Fn-2
Do đó, một chuỗi Fibonacci có thể trông như thế này -
F8 = 0 1 1 2 3 5 8 13
hoặc, cái này,
F8 = 1 1 2 3 5 8 13 21
Đầu vào
Giả sử đầu vào của chúng tôi là -
The input : 15
Đầu ra
Đầu ra mong muốn sẽ là -
The fibonacci series till 15 terms:
Thuật toán
Step 1 - START Step 2 - Declare values namely Step 3 - Read the required values from the user/ define the values Step 4 - Use a for loop to iterate through the integers from 1 to N and assign the sum of consequent two numbers as the current Fibonacci number Step 5- Display the result Step 6- Stop
Ví dụ 1
Ở đây, đầu vào đang được người dùng nhập dựa trên lời nhắc. Bạn có thể thử trực tiếp ví dụ này trong công cụ nền tảng mã hóa của chúng tôi .
import java.util.Scanner; public class Main { public static void main(String[] args) { int my_input , term_1, term_2, term_3; term_1 = 0; term_2 = 1; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A reader object has been defined "); System.out.print("Enter the number : "); my_input = my_scanner.nextInt(); System.out.println("The fibonacci series till " + my_input + " terms:"); for (int i = 1; i <= my_input; ++i) { System.out.print(term_1 + " "); term_3 = term_1 + term_2; term_1 = term_2; term_2 = term_3; } } }
Đầu ra
Required packages have been imported A reader object has been defined Enter the number : 15 The fibonacci series till 15 terms: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
Ví dụ 2
Ở đây, số nguyên đã được xác định trước đó và giá trị của nó được truy cập và hiển thị trên bảng điều khiển.
public class Main { public static void main(String[] args) { int my_input , term_1, term_2, term_3; my_input = 15; term_1 = 0; term_2 = 1; System.out.println("The number are defined as " +my_input ); System.out.println("The fibonacci series till " + my_input + " terms:"); for (int i = 1; i <= my_input; ++i) { System.out.print(term_1 + " "); term_3 = term_1 + term_2; term_1 = term_2; term_2 = term_3; } } }
Đầu ra
The number are defined as 15 The fibonacci series till 15 terms: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377