#Lutece1000. Fibonacci数的后9位
Fibonacci数的后9位
Migrated from Lutece 1000 Fibonacci数的后9位
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Fibonacci数列定义如下:
, 当时
给出,求出的后位并输出,不足位,请在前面补。
Input
有多组测试数据。每一组测试数据只有一行,为整数。其中,。
Output
对应每组输入,输出一行题目要求的结果。
Samples
2
000000002
150
907386349
Note
由于每组测试数据都是只有一个整数,所以可以利用scanf的返回值来判断输入数据是否结束,程序框架可以如下:
#include <stdio.h>
int main()
{
int a;
while(scanf("%d", &a) == 1)
{
//处理数据
//输出结果
}
return 0;
}
Resources
wxiaoping C语言练习