Hello,World!
Hello,World!
Hello,World!
Hello,World!
海纳百川,有容乃大;壁立千仞,无欲则刚。
点击跳转到百度首页
名字 | 性别 | 生日 |
---|---|---|
张三 | 男 | 1997.01.01 |
public class test { public static void main(String[] args) { System.out.println("This is test."); int f[] = new int[2022]; f[0] = 0; for(int x=1;x<2022;x++){ f[x] = x - f[f[x-1]]; System.out.println("f("+ x + ") = " + f[x]); } } }