101. 費式數列

I'm a slow walker, but I never walk backwards.

Task Description
費式數列函式
設計一個可以算出N個數的費式數列的函數getFib。

Hint

getFib.h

打上 function header 以及相關的設定。

void getFib(int N);

getFib.c

撰寫程式碼後對應上傳。

#include "getFib.h"
void getFib(int N) {
    / add your code /
}

main.c

這個檔案無法更改也無須上傳。

1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include "getFib.h"
 
int main() {
    int N;
    scanf("%d", &N);
    getFib(N);
 
    return 0;
}

Input Format
測試資料為一個整數N。
Output Format
印出由N個數組成的費氏數列(最後不空格)。
Sample Input

1
8

Sample Output

1
0 1 1 2 3 5 8 13

Submit

Login

Testdata Set

Download Testdata