Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

จะใช้ชุด Fibonacci ใน JShell ใน Java 9 ได้อย่างไร?


JShell เป็นเครื่องมือเชลล์ java ที่นำมาใช้ใน Java 9 ที่ช่วยให้เราสามารถรันโค้ด Java และพิมพ์ผลลัพธ์ได้ทันที มันคือ REPL (Read-Evaluate-Print-Loop) เครื่องมือที่ทำงานจาก บรรทัดคำสั่ง พร้อมท์

ตัวเลขคือ อนุกรมฟีโบนักชี หากแต่ละหมายเลขต่อมาคือ ผลรวมของตัวเลขสองตัวก่อนหน้า .

ในตัวอย่างด้านล่าง เราสามารถใช้ Fibonacci S ซีรีย์ ในเครื่องมือ JShell

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++) {
...>          x=y; y=z;
...>          z = x+y;
...>          System.out.println(z);
...>       }
...>    }
0
1
1
2
3
5
8
jshell>