C++内置函数?
发布网友
发布时间:2023-06-07 17:48
我来回答
共2个回答
热心网友
时间:2024-02-16 19:55
你return之后,函数已经返回了,所以system(“pause”)没用。
inline的意思是函数在编译的时候就已经将变量用其默认值替换了,所以你最好去掉inline。追问不是吧 system("pause") 只是用来 显示结果的 呀 ! 编译 后提示我的 时候 using namespace std; 错误 。我就搞不懂了
追答#include 跟#include 换一下位置试试,按理说应该没有问题。
热心网友
时间:2024-02-16 19:56
inline追问#include
#include
using namespace std;
inline int power(int x)
{
return x*x;
}
int main ( )
{
cout<<power(2)<<endl;
return 0;
system("pause");
}
这个对了!!
追答恭喜~