題目要求:編寫程序在控制檯輸出斐波那契數列前20項,每輸出5個數換行

//方法一 for循環 public class FeiBoMethod{       // 定義三個變量方法       public static void main(String[] args) {           int a = 1, b = 1, c = 0;           System.out.println("斐波那契數列前20項爲:");           System
相關文章
相關標籤/搜索