摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1316意思很简单,就是让你计算在两个数之间有多少个斐波那契数,很挫的时我一开始把string的比较给搞错了,一直出不来结果。。。orz,还是直接上代码了。。View Code 1 #include<iostream> 2 #include<string> 3 #include<cstring> 4 const int N=1000; 5 using namespace std; 6 string f[N]; 7 int num[N]; 8 9 void solve 阅读全文
posted @ 2013-02-28 16:04 ihge2k 阅读(245) 评论(0) 推荐(0) 编辑