第九届蓝桥杯——分数

【问题描述】

1/1 + 1/2 + 1/4 + 1/8 + 1/16 + … 每项是前一项的一半,如果一共有 20 项,求这个和是多少,结果用分数表示出来。
类似:3/2,当然,这只是加了前2项而已。分子分母要求互质。

【答案提交】
需要提交的是已经约分过的分数,中间任何位置不能含有空格。
请不要填写任何多余的文字或符号。


解题思路:

前一项和 1/1,前两项和 3/2,前三项和 7/4,前四项和 15/8,这样的话应该可以得出规律了吧

题解:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	int a = 1, b = 1;
	for (int i = 1; i < 20; i ++)
	{
		a = 2*a + 1;
		b *= 2;
	}
	cout << a << '/' << b << endl;
	
	return 0;
}

程序运行结果:1048575/524288,如何判断是不是最简式呢,程序如下

题解:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

// 求最大公约数 
int gcd(int a, int b)
{
	if(b == 0) return a;
	else return gcd(b, a % b);
}

int main()
{
	int a = 1, b = 1;
	for (int i = 1; i < 20; i ++)
	{
		a = 2*a + 1;
		b *= 2;
	}
	
	int t = gcd(a, b);
	cout << a/t << '/' << b/t << endl;
	
	return 0;
}

答案:1048575/524288

如果感觉这篇文章对你有帮助的话,不妨点一个赞,十分感谢(✪ω✪)。
printf(“点个赞吧!”);
cout <<“点个赞吧!”;
System.out.println(“点个赞吧!”);
↓↓↓

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>