需要帮助-基本 Java 代码。(斐波那契数列)

Need help- basic Java code.(Fibonacci Series)

非常新的 Java 程序员,我正在努力解决这个斐波那契问题。 (省略 import/class 定义

    Scanner sc = new Scanner(System.in);
    System.out.print("Put in how many you want to input");
    numToPrint = sc.nextInt();
    sc.close();

    int current = 1;
    int last = 0;
    System.out.println(last);
    System.out.println(current);

    // This is the section I don't really understand.
    int lastlast;
    for (int c =2; c < numToPrint; c++){
        lastlast = last; //How does last variable change from 0 as assigned from above?
        last = current; // How does current variable change from 1? 
        current = lastlast + last;
        System.out.println(current);
        }
      }

"How does last variable change from 0 as assigned from above?" 因为您将 current 中的值分配给 last with

last = current;

"How does current variable change from 1? " 因为你把 lastlast 和 last 的总和赋值给 current with

current = lastlast + last;

由于 OP 是一个非常新的 Java 程序员,我认为它可能是 提供一个小教程很有帮助,就像初学者一样 class。

其他回答的都对了,但是大家要 从某个地方开始。

好的。你不明白的部分有几个整型变量, 这是计算机内存中存储位置的名称。 我会把它们画出来以显示它们存储的内容(目前它们 为空):

  .---.      .---.  .---.  .---.  .---.
  |   |      |   |  |   |  |   |  |   |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

现在在Java中,当程序运行时,新变量被初始化为零 开始。 (顺便说一句,并非所有语言都是如此)。

我会将值设置为它们在阅读(比如)4 和 定位于评论:

//This is the section I don't really understand

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 1 |  | 0 |  | 0 |  | 0 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

现在,移动几行,我们开始循环:

for (int c =2; c < numToPrint; c++) {

我们可以看到c < numToPrinttrue所以我们继续:

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 1 |  | 0 |  | 0 |  | 2 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

接下来的两行被执行:

lastlast = last; last = current;

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 1 |  | 1 |  | 0 |  | 2 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

那么下一行是:

current = lastlast + last;

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 1 |  | 1 |  | 0 |  | 2 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

然后:System.out.println(current);

这输出“1”

在循环的底部,我们将 c 递增 1:

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 1 |  | 1 |  | 0 |  | 3 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

然后回到顶部比较c < numToPrint哪个还是 true,于是我们继续:

接下来的两行被执行:

lastlast = last; last = current;

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 1 |  | 1 |  | 1 |  | 3 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

那么下一行是:

current = lastlast + last;

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 2 |  | 1 |  | 1 |  | 3 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

然后:System.out.println(current);

这输出“2”

在循环的底部,我们将 c 递增 1:

  .---.      .---.  .---.  .---.  .---.
  | 4 |      | 2 |  | 1 |  | 1 |  | 4 |
  '---'      '---'  '---'  '---'  '---'
numToPrint  current last  lastlast   c

然后回到顶部比较现在的c < numToPrint false,至此程序结束

希望这能帮助您更多地理解代码? (由 emacs 图片编辑模式和冰镇啤酒提供!)