题目链接:uva 10334 - Ray Through Glasses 题目大意:在2块玻璃中反射k次的光线条数。 解题思路:斐波那契数列。(大数) #include <stdio.h>#include <string.h>#include <iostream>using namespace std;const int N = 1005;struct bign
题目连接:uva 10183 - How Many Fibs? 题目大意:给出a和b,求出a~b中有几个数时斐波那契数。 解题思路:模拟斐波那契数,找到临界的标号,相减的到答案。(大数,直接摘模板了,会比较长) #include <stdio.h>#include <string.h>const int N = 105;struct bign {int len, s