gpt4 book ai didi

c++ - 在 C++ 中调用函数

转载 作者:搜寻专家 更新时间:2023-10-30 23:58:46 26 4
gpt4 key购买 nike

我是整个 C++ 编程的新手,我知道这是一个简单的解决方案,但我就是想不通!我只是想调用一个打印出 1 + 4 的函数。这是代码:

#include <iostream>
using namespace std;

int func()
{
cout << 1 + 4;
return 0;
}

int main()
{
int func();
}

它在控制台窗口中没有显示任何内容,仅显示应用程序已停止并返回代码 0。谁能告诉我哪里出了问题?

最佳答案

您没有正确调用 func() 函数:

int main()
{
// int func(); This line tries to declare a function which return int type.
// it doesn't call func()
func(); // this line calls func() function, it will ouput 5
return 0;
}

关于c++ - 在 C++ 中调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19077343/

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