1.1.6下面这段程序会打印出什么? int f=0; int g=1; for (int i=0;i<=15;i++) { StdOut.println(f); f=f+g; g=f-g; }答:斐波那契数列前16项。