設計一個程式,列印出1-200之間的斐波那契數列

amadan發表於2021-09-09

/設計一個程式,列印出1-200之間的斐波那契數列(說明:斐波那契數列指這樣一個數列:1、1、2、3、5、8、13、21、34)
/
public class Demo {

public static void main(String[] args) {
    fibo(200);      
}
//計算下標數
static int countindex(int target) {
    int count = 2;
    int a = 1;
    int b = 1;
    int c = a + b;
    while (c 

}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2310/viewspace-2807653/,如需轉載,請註明出處,否則將追究法律責任。

相關文章