编辑代码

class Ex1_1_6 {
	public static void main(String[] args) {
        //程序运行完成时一定要有输出语句,本工具才能正确展示运行结果。
		int f=0;
        int g=1;
        for(int i=0;i<=15;i++)
        {
            System.out.println(f);
            f=f+g;
            g=f-g;
        }
        System.out.println("Hello JSRUN!   \n\n         - from JAVA .");
	}
}