JShell是Java 9中引入的一个java shell工具,它允许我们执行Java代码并立即打印结果。它是一个从命令行提示符运行的REPL(读取-评估-打印-循环)工具。
如果一个数字是斐波那契数列,如果每个后续数字都是前两个数字之和。
在下面的示例中,我们可以在 JShell 工具中实现斐波那契数列系列。
<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>
以上是如何在Java 9的JShell中实现斐波那契数列?的详细内容。更多信息请关注PHP中文网其他相关文章!