/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Source_Coding;

import javax.swing.JOptionPane;

/**
*
* @author Muhammad Khafid F
*/
public class bil_vibo {
public static void main(String[] args) {
int deret=Integer.parseInt(JOptionPane.showInputDialog(“Masukkan berapa deret Fibonacci: “));
int a=0;
int b=1;
System.out.print(deret+” deret Fibonacci: ” );
for (int i=0;i<deret;i++){
System.out.print(a+” “);
a=a+b;
b=a-b;
}
}
}