package cn.edu.bjut.chapter2; public class Fibonacci { public static void main(String[] args) { int f1 = 1, f2 = 1; for (int i = 1; i < 38 / 2; i++) { System.out.println("\t" + f1 + "\t" + f2); f1 += f2; f2 += f1; } } }