摘要:
#include<stdio.h> #include <time.h> int Fibo(int n) { if(n<=2) return 1; else return Fibo(n-1)+Fibo(n-2); } int main() { clock_t start, finish; double 阅读全文
posted @ 2017-12-21 23:48
^Rourou
阅读(123)
评论(0)
推荐(0)
浙公网安备 33010602011771号