Forrest


私信TA

用户名:dotcpp0717441

访问量:4028

签 名:

等  级
排  名 88
经  验 9140
参赛次数 1
文章发表 121
年  龄 0
在职情况 教师
学  校 优学乐程
专  业

  自我简介:

解题思路:高精度

注意事项:

参考代码:

#include#include#includeusing namespace std;
const int N = 1e3 + 10;
int a[N], b[N];
int main()
{	
	int k = 1;
	a[0] = 1,b[0] = 1;
	for(int i = 0; i < 63; i ++){
		int r = 0, j = 0;
		for(; j < k; j ++){
			r += a[j] * 2;
			a[j] = r % 10;
			r /= 10;
		}
		if (r > 0) {
			a[j] = r;
			k ++;
		}
		int t = 0, l = 0;
		for(; l < k; l ++){
			t += a[l] + b[l];
			b[l] = t % 10;
			t /= 10;
		}
		if (t > 0) {
			b[l] = t;
			k ++;
		}
	}
	while(!b[k]) k--;
	for(int i = k; i >= 0; i --) cout << b[i]; 
	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »