輸出這個數字的斐波那契數列的前30項。(C語言)

#define _CRT_SECURE_NO_WARNINGS #include<stdlib.h> #include<stdio.h> #include<string.h> #define Length 30 //輸出這個數字的斐波那契數列的前30項 //規律爲:從第三項開始,每一項都是前兩項之和 void main(void) { int Nums[Length] = { 0 },i;
相關文章
相關標籤/搜索