【算法】美团之大富翁问题(C++源码)

一、问题描述

玩家根据骰子的点数决定走的步数,即骰子点数为1时可以走一步,点数为2时可以走两步,点数为n时可以走n步。求玩家走到第n步(n小于等于骰子最大点数且投骰子方法唯一)时总共有多少种投骰子的方法。

二、输入描述

输入一个1至6之间的整数

三、输出描述

输出一个整数,表示投骰子的方法数例如,输入为6时,输出为32.

四、步骤描述

a[1]=1;
a[2]=a[1]+1=2;
a[3]=a[2]+a[1]+1=4;
a[4]=a[3]+a[2]+a[1]+1=7;
……
a[6]= a[5]+a[4]+a[3]+a[2]+a[1]+1=32;

五、运行结果截图

1
2
3
4
5
6
6
7

六、源代码(C++)

#include <iostream>

using namespace std;

int main()
{
    int a[7];
    for(int i=1;i<=6;i++)
    {
        a[i]=1;
    }
    for(int i=1;i<=6;i++)
    {
        for(int j=1;j<=i-1;j++)
        {
            a[i]=a[i]+a[j];
        }
    }
    int x;
    cout<<"Please enter the steps the player needs to take : ";
    cin>>x;
    if(x>6 || x<=0)
    {
        cout<<"Please enter a number of steps less than six and greater than zero ! "<<endl;
    }
    else
    {
        cout<<"There are "<<a[x]<<" ways to throw dice"<<endl;
    }
    return 0;
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

敲代码两年半的练习生

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值