gpt4 book ai didi

c++ - stof 函数未在此范围内声明 c++

转载 作者:太空宇宙 更新时间:2023-11-03 10:46:42 24 4
gpt4 key购买 nike

当我编译我的代码时,我得到了这个错误

'stof' 未在此范围内声明。

我的代码是

#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;
}

如何解决这个问题??

最佳答案

此外,std::stof 只能使用 c++11 版本进行编译,编译应按以下方式进行:

g++ -std=c++11 code.cc

关于c++ - stof 函数未在此范围内声明 c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19879506/

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