-2

可能重复:
如何让 C++ 求解输入值的方程?

我是 C++ 新手,只是在玩……

#include <iostream>
using namespace std;

int limbs(int handdmg, int armdmg, int chestdmg, int headshot, int legdmg)
{
    return handdmg + armdmg + chestdmg + legdmg + headshot;

}
main ()
{

    int totaldmg; 
    int handdmg; 
    int armdmg; 
    int chestdmg; 
    int legdmg;
    int headshot;
    int Dmgdial;
    int x;

    // limiting the variables to a smaller range of integers       

    handdmg = 0 < x < 5;
    armdmg = 10 < x < 15;
    chestdmg = 25 < x < 50;
    legdmg = 30 < x < 40;
    headshot = 80 < x < 120;

    cout  << "Enter your total damage taken:" << endl;
    cin >> totaldmg;

    Dmgdial = totaldmg;

    // want the variables to = the input value in the best smallest way possible

    limbs(handdmg, armdmg, chestdmg, headshot, legdmg) = Dmgdial;

    // then print the variables answers to the screen

    cout << "damage given to the hand:   " << handdmg << endl;
    cout << "damage given to the arm:    " << armdmg << endl;
    cout << "damage given to the chest:  " << chestdmg << endl;
    cout << "damage given to the leg:    " << legdmg << endl;
    cout << "damage given to the head:   " << headshot << endl;



    cin.clear();
    cin.ignore(2505, '\n');
    cin.get();

    return 0;

}

所以这个概念很简单——你在程序中输入一个值,例如 156,然后让计算机使用 x 的有限值计算获得该值的最佳方法。

但是,limbs(handdmg, armdmg, chestdmg, headshot, legdmg) = Dmgdial不起作用。就编译器而言,它是倒退的。

我怎样才能让这种类型的程序工作?

4

3 回答 3

2

[..] 获得该价值的最佳方式 [...]

这是你的任务。“计算机”对损坏或爆头一无所知。拿一张纸,写下你想如何从总伤害值中计算伤害细节。例如:

struct DamageDetails
{
   int head, leg, arm;
   const int HEAD_MAX = 120;
   const int HEAD_MIN = 80;

   static DamageDetails FromTotalDamage(int totalDamage)
   {
        DamageDetails damage;
        int damageTakenSoFar = totalDamage;
        damage.head = totalDamage / 2;  // 50% damage is taken to head
        if (damage.head > HEAD_MAX)
            damage.head = HEAD_MAX;
        damageTakenSoFar -= damage.head;
        // ...

        return damage;
   }

};
于 2012-08-25T09:11:31.133 回答
0

您正在尝试求解 1 个具有 5 个未知数的方程,这是一个未定问题。你需要一个包含 5 个方程和 5 个未知数的系统才能得到唯一的答案。

此外,您实际上并没有指定方程 - 现在看起来您正在假设一个线性方程 t = x + y + z + v + w。考虑到限制变量的(奇怪)部分,这可能不正确。

此外,C++ 不是求解方程的数学系统。您需要自己编写代码来解决它们,或者使用第三方库。

总的来说,就数学和编程专业知识而言,我会说你在做你想做的事。在尝试这样的任务之前,您将从学习更多理论中受益。

于 2012-08-25T10:05:53.473 回答
0

这是使用回溯解决您的问题的方法:

#include <stdio.h>

int v[100], n, int dmg;

void init(int k)
{
    v[k] = 0;
}

bool solutionReached( int k ) 
{
    if (k <= 5)
        return false;

    int sum = 0;
    for (int i = 1; i <= k; i++)
    {
        sum += v[i];
    }

    if(sum == dmg)
    {
        if( v[1] < 5 &&
            v[2] > 10 && v[2] < 15 &&
            v[3] > 25 && v[3] < 50 &&
            v[4] > 30 && v[4] < 40 &&
            v[5] > 80 && v[5] < 120)
            return true;
    }

    return false;
}

void printSolution( int k ) 
{
    for (int i = 1; i < k; i++)
    {
        printf("%i ", v[i]);
    }
    printf("\n");
}

bool hasSuccesor( int k ) 
{
    if(v[k] < 120 && k <= 5)
    {
        v[k]++;
        return true;
    }
    return false;
}

bool isValid( int k ) 
{
    /*
    if(v[1] > 5)
        return false;
    if(!(v[2] > 10 && v[2] < 15))
        return false;
    if(!(v[3] > 25 && v[3] < 50))
        return false;
    if(!(v[4] > 30 && v[4] < 40))
        return false;
    if (!(v[5] > 80 && v[5] < 120))
        return false;
    */

    return true;
}

void bkt(int k)
{
    if(solutionReached(k))
        printSolution(k);
    else
    {
        init(k);
        while(hasSuccesor(k))
            if(isValid(k))
                bkt(k + 1);
    }
}

int main(int argc, char* argv[])
{
    dmg = 200;
    n = 6;
    bkt(1);

    return 0;
}
于 2012-08-25T10:06:02.750 回答