gpt4 book ai didi

C++ stoi 超出范围问题

转载 作者:行者123 更新时间:2023-11-28 02:12:19 50 4
gpt4 key购买 nike

我正在使用最新版本的 C++,我正在尝试运行以下代码。但是,它一直告诉我 stoi “未在此范围内声明”。我是 C++ 的新手,所以如果您有任何想法,请分享。

#include <iostream>
using namespace std;

#include <iostream>
using namespace std;
#include <string>



int main(int argc, char *argv[])
{

int a;
for (int i=0; i<argc; i++)
{
string str(argv[1]);

a=stoi(str);


if (a<1) {
cout<< "the sequence length must be greater than 1"<<endl;
} else {
cout <<"consecutive "<< a<<endl; // prints the input number of required consecutive
}
}

int num[1000000];
int n, j;
n=1;

for (int x=1;!cin.eof() ; ++x)
{
cin>>num[x];

if (cin.fail())
{
cout<< "error, only integers allowed"<<endl;
break;
}


else if (x>=a)

{
while ( num[x-n+1] - num[x-n] == 1)

{ ++n;

if (n == a)
{ cout<< "sequence found: " ;

for (j=a-1; j >=0; --j)

cout<< num[x-j]<<" ";
break;
}
}
}
}

cout<<endl;
return 0;
}

最佳答案

std::stoiC++11 及更高版本的特性,因此在编译时启用 C++11。

在 gcc 或 clang 中,标志是 -std=c++11

CXX -std=c++11 cc.cc

其中 CXX 将是 g++clang++

请在标题包含部分也进行此更改

#include <iostream>
#include <string>
using namespace std;

关于C++ stoi 超出范围问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35233234/

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