当我编译代码时,我收到了此错误
我的代码是
#include<iostream>
#include<string.h>
using namespace std;
int main()
{
string str,str2;
cin>>str>>str2;
float a,b;
a = stof(str); //error
b = stof(str2); //error
cout<<a+b;
return 0;
}
如何解决这个问题?
答案 0 :(得分:4)
同样std::stof
只能使用c ++ 11版本编译,编译应该按以下方式编译:
g++ -std=c++11 code.cc
答案 1 :(得分:3)
std::stof
位于标准C ++标头<string>
。
答案 2 :(得分:0)
对于dev c ++,您需要转到Project> Project Options(Ctrl + h)>编译器>代码生成>语言标准,然后选择GNU C ++ 11
(由于我将语言设置为意大利语,所以不太确定菜单
)