gpt4 book ai didi

c++ - 当变量不在全局范围内并在自定义函数中使用时,如何在 C++ 中设置变量的值?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:23:17 25 4
gpt4 key购买 nike

变量不接受我在 C++ 程序中输入的值。我必须避免使用全局变量,只使用局部变量。而且该函数不返回任何内容,所以我使用了“void”而不是“int”类型。当我使用字符串或任何类型的自定义函数时,也会发生同样的事情。这是解释我的问题的示例:

#include <iostream>


void sum (int a, int b, int c);

int main (void)
{
int a = 0, b = 0, c = 0;

sum (a, b, c);

std::cout << a << b << c;

return 0;
}


void sum (int a, int b, int c) // It doesn't have to be the same variable name :)
{
std::cout << "Enter value of a:\n";
std::cin >> a;
std::cout << "Enter value of b:\n";
std::cin >> b;
std::cout << "Enter value of c:\n";
std::cin >> c;

a = b+c;
}

最佳答案

Pass by reference :

void sum (int &a, int &b, int &c)

关于c++ - 当变量不在全局范围内并在自定义函数中使用时,如何在 C++ 中设置变量的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25338167/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com