请各位大神看看下面那段程序哪里出错了?
#include<iostream>#include<string>usingnamespacestd;intmain(){boolb(){stringa="gausd"...
#include<iostream>
#include<string>
using namespace std;
int main()
{
bool b()
{
string a="gausd";
stringc="z";
return a>c;
}
cout<<b()<<endl;
system("spause");
return 0;
} 展开
#include<string>
using namespace std;
int main()
{
bool b()
{
string a="gausd";
stringc="z";
return a>c;
}
cout<<b()<<endl;
system("spause");
return 0;
} 展开
1个回答
展开全部
改过来了,如下:
#include<iostream>
#include<string>
using namespace std;
bool b()
{
string a="gausd";
string c="z";
return a>c;
}
int main()
{
cout<<b()<<endl;
system("spause");
return 0;
}
#include<iostream>
#include<string>
using namespace std;
bool b()
{
string a="gausd";
string c="z";
return a>c;
}
int main()
{
cout<<b()<<endl;
system("spause");
return 0;
}
更多追问追答
追问
还是不行啊!错误原因:error C2601: “b”: 本地函数定义是非法的
追答
我都编译通过了,没问题。输出0.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询