如何将一个变量从C ++中的一个函数返回到main然后在另一个函数中使用它?

时间:2016-07-07 01:05:59

标签: c++ function variables return-value main

好的,所以我有一个卡路里计算器应该被分成五个功能,包括主要见下文。我的问题是我得到一个编译器错误,因为一旦获得了任何其他函数,inputNumber函数和calculateCalories函数中的变量就无法读取。我不允许使用全局变量。必须有一些我缺少的能够读取main函数中的变量然后将它们输出到其他函数以获得正确的输出。任何帮助,将不胜感激。 这是代码:

#include <iostream>
#include <string>
#include <iomanip>

using namespace std;

int main()
{
    int Lbs, hourr, hourW, hourWe, hourb;
    double calBad, calRun, calWal, calWei;
    string name;

    cout << "Welcome to Megan McCracken's Workout Calculator!" << endl;
    cout << endl;

    cout << "Please enter your name: ";
    getline(cin, name);

    inputNumber(Lbs, hourr, hourW, hourWe, hourb);

    calculateCalories(Lbs,hourr,hourb,hourW,hourWe,calBad,calRun,calWal,calWei);

    displayHeadings(name);

    displayLine(hourr,hourb,hourW,hourWe,calBad,calRun,calWal,calWei);

    system("pause");
    return 0;
}

int inputNumber(int Lbs, int hourr, int hourb, int hourW, int hourWe)
{
    cout << "Please enter your weight: ";
    cin >> Lbs;
    return Lbs;
    cout << "Please enter the minutes spent playing badminton: ";
    cin >> hourb;
    return hourb;
    cout << "Please enter the minutes spent running: ";
    cin >> hourr;
    return hourr;
    cout << "Please enter the minutes spent walking: ";
    cin >> hourW;
    return hourW;
    cout << "Please enter the minutes spent lifting weights: ";
    cin >> hourWe;
    return hourWe;
    cout << endl;
}

double calculateCalories(int Lbs, int hourW, int hourb, int hourr, int hourWe, double calBad, double calRun, double calWal, double calWei)
{
    const double Badburn = .044, Runburn = .087, Walkb = .036, Weightb = .042;
    double calBad, calRun, calWal, calWei;
    calBad = (Badburn * Lbs) * hourb;
    calRun = (Runburn * Lbs) * hourr;
    calWal = (Walkb * Lbs) * hourW;
    calWei = (Weightb * Lbs) * hourWe;
    return calBad;
    return calRun;
    return calWal;
    return calWei;
}

void displayHeadings(string name)
{
    cout << "Here are the results for " << name << ": " << endl;
    cout << endl;

    cout << "Activity" << right << setw(18) << "Time" << right << setw(10) << "Calories" << endl;
    cout << "--------------------------------------" << endl;
}

void displayLine(int hourb,int hourr, int hourW, int hourWe, double calBad, double calRun, double calWal, double calWei)
{
    int HB, MB, HR, MR, HW, MW, HWE, MWE, Hour, Min;
    double Calorie;
    HB = (hourb / 60);
    MB = (hourb % 60);
    HR = (hourr / 60);
    MR = (hourr % 60);
    HW = (hourW / 60);
    MW = (hourW % 60);
    HWE = (hourWe / 60);
    MWE = (hourWe % 60);

    Calorie = calBad + calRun + calWal + calWei;
    Hour = (hourb + hourr + hourW + hourWe) / 60;
    Min = (hourb + hourr + hourW + hourWe) % 60;

    cout << "Badminton" << right << setw(14) << HB << ":" << setfill('0') << setw(2) << MB << setfill(' ') << right << setw(10) << setprecision(3) << fixed << showpoint << calBad << endl;

    cout << resetiosflags(ios::fixed | ios::showpoint);

    cout << "Running" << right << setw(16) << HR << ":" << setfill('0') << setw(2) << MR << setfill(' ') << right << setw(10) << setprecision(3) << fixed << showpoint << calRun << endl;

    cout << resetiosflags(ios::fixed | ios::showpoint);

    cout << "Walking" << right << setw(16) << HW << ":" << setfill('0') << setw(2) << MW << setfill(' ') << right << setw(10) << setprecision(3) << fixed << showpoint << calWal << endl;

    cout << resetiosflags(ios::fixed | ios::showpoint);

    cout << "Weights" << right << setw(16) << HWE << ":" << setfill('0') << setw(2) << MWE << setfill(' ') << right << setw(10) << setprecision(3) << fixed << showpoint << calWei << endl;

    cout << "--------------------------------------" << endl;

    cout << resetiosflags(ios::fixed | ios::showpoint);

    cout << "Totals" << right << setw(17) << Hour << ":" << setfill('0') << setw(2) << Min << setfill(' ') << right << setw(10) << setprecision(3) << fixed << showpoint << Calorie << endl;
    cout << endl;
}

3 个答案:

答案 0 :(得分:2)

如果你想在C ++中修改一个函数中的传入变量,你应该通过引用传递它们(默认是按值,这意味着你得到一个有效的变量的副本当函数退出时抛弃。)

所以,举例来说:

void xyzzy (int plugh) { plugh = 42; }
int main() {
    int twisty = 7;
    xyzzy (twisty);
    cout << twisty << '\n';
    return 0;
}

将输出7,因为twisty是按值传递的,并且函数内的更改将不会回显给调用者。

但是,如果您通过引用传递:

void xyzzy (int &plugh) { plugh = 42; }
//              ^
//              This does the trick.

然后你会发现它会根据需要输出42

对于您的特定情况,您希望查看inputNumber的参数列表中的变量:

int inputNumber(int Lbs, int hourr, int hourb, int hourW, int hourWe)

你想要回复给调用者的任何这些(并且看起来像粗略的一瞥)应该通过引用传递而不是传递值。

你也应该研究calculateCalories,因为那是做同样的事情。请记住,您想要更改并回显给调用者的需要通过引用传递。因此,这只是以cal开头的那些。

并且,由于您使用pass-by-reference来修改变量,因此绝对没有理由从该函数返回任何内容,因此可以将其指定为void calculateCalories ...并且return语句被删除(在任何情况下,只有第一个return实际上会做任何事情,其他的将是无法访问的代码。)

如果你还没有达到可以在课堂作业中使用推荐的程度(正如你的一条评论所表明的那样),那么你可以做C编码员几十年来一直在做的事情,使用指针模拟传递引用。就上面的简化示例而言,这意味着修改函数以接收指针到您想要更改的项目,更改它指向的内容,并使用要更改的变量的地址调用它:

void xyzzy (int *pPlugh) { *pPlugh = 42; }
int main() {
    int twisty = 7;
    xyzzy (&twisty);
    cout << twisty << '\n';
    return 0;
}

然而,它是真实的东西的可怜替代品,如果你的教育工作者试图教你这个,那就像他们让你使用{{1}一样而不是printf/scanf用户I / O:它在C ++中肯定是可能的,因为该语言包含遗留C的东西,但它不是真的< / em>教你C ++方式。

自称是C ++开发人员但真正使用C ++编译器编写C代码的人是一个相当奇怪的品种,我喜欢称之为C +开发人员 - 他们从来没有真正接受过这种语言。人们越早抛弃遗留的东西,他们就越能成为C ++开发人员。

答案 1 :(得分:1)

通过引用传递变量。然后这些函数就可以编辑它们了。

你的另一个解决方案(不是一个好主意但仍在工作)是创建一个struct / class并使函数返回它。

P.S。如果函数按此顺序排序,除非您在开头添加签名,否则您的代码将无法运行:

int main();
int inputNumber(int,int,int,int,int);
//and so on

答案 2 :(得分:1)

在输入号码中,您无法使用&#39; return&#39;返回每个值 - 它将执行第一个return语句。

在C ++中,您可以使用传递引用,以便分配给变量的值将被传回。

在这种情况下,通过输入变量将是inputNumber,因此使用&#39;&amp;&#39;表示vaiables是引用:

if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_CONTACTS) == PackageManager.PERMISSION_GRANTED){
            yeahReadContacts();
        }else{
            requestPermissions. //This and "READ_CONTACTS" are red.
        }}

类似于calculateCalories的想法,摆脱了回报:

void inputNumber(int &Lbs, int &hourr, int &hourb, int &hourW, int &hourWe)
{
.
.
.
}

请注意,我们只是想要传递给我们将要传回的变量的引用。