JShell ist ein in Java 9 eingeführtes Java-Shell-Tool, mit dem wir Java-Code ausführen und die Ergebnisse sofort drucken können. Es handelt sich um ein REPL (Read-Evaluate-Print-Loop) -Tool, das über die BefehlszeileEingabeaufforderung ausgeführt wird.
Wenn eine Zahl eine Fibonacci-Folge ist, wenn jede nachfolgende Zahl die Summe der beiden vorherigen Zahlen ist.
Im folgenden Beispiel können wir die Fibonacci-SequenzSerie im JShell-Tool implementieren.
<strong>C:\Users\User\>jshell | Welcome to JShell -- Version 9.0.4 | For an introduction type: /help intro jshell> int x=0, y=1, z=0, count=5; x ==> 0 y ==> 1 z ==> 0 count ==> 5 jshell> { ...> System.out.println(x+"\n"+y); ...> for(int i=0; i<count; i++) {</strong> <strong>...> x=y; y=z;</strong> <strong>...> z = x+y;</strong> <strong>...> System.out.println(z); ...> } ...> } 0 1 1 2 3 5 8 jshell></strong>
Das obige ist der detaillierte Inhalt vonWie implementiert man die Fibonacci-Sequenz in JShell in Java 9?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!