输出斐波那契数列前 n 项和 对m取摸的结果 #include<bits/stdc++.h> #define LL long long #define N 3 using namespace std; int n,m; void cal(int c[],int a[],int b[][N]) { int temp[N]={0}; for (int i=0; i<N;i++) for (int j=0;j<N;j++) temp[i]=(temp[i]+(LL)a[j]*b[j][i…
/* * 斐波那契数列.cpp * * Created on: 2018年4月9日 * Author: soyo */ #include<iostream> #include<ctime> using namespace std; //# define CLOCKS_PER_SEC ((clock_t) 1000000) 它表示1秒钟里有多少个嘀嗒个数. int main() { long long Fibonaci(int n); long long fibi(int n); i…