gpt4 book ai didi

c++ - 错误 : cannot be used as a function

转载 作者:行者123 更新时间:2023-11-28 02:37:18 24 4
gpt4 key购买 nike

我刚开始学习 C++ 并写了这个:

#include <iostream>
using namespace std;

void sumtype (double sum) {
if (sum>0)
cout<<"P"<<endl;
else if (sum==0)
cout<<"0"<<endl;
else
cout<<"N"<<endl;
}

double sum (double a, double b) {
return a+b;
}

int main() {
char sumtype;
double a;
double b;
cout<<"input value of a: ";
cin>>a;
cout<<"input value of b: ";
cin>>b;
cout<<"sum= "<<sum (a,b)<<endl;
sumtype (sum);

}

但是它总是说错误:“sumtype”不能用作函数 总和(总和); ^

有什么问题?

最佳答案

函数和变量更改变量或函数名称的名称相同,它将起作用。 (例如 char sumtype1;)

关于c++ - 错误 : cannot be used as a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27033677/

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