我正在制作一个从用户那里获取输入的程序,而每个输入都包含用空格分隔的整数。例如“2 3 4 5”。
我很好地实现了 atoi 函数,但是,每当我尝试在字符串上运行并在空格上“跳过”时,都会出现运行时错误:
for(int i=0, num=INIT; i<4; i++)
{
if(input[i]==' ')
continue;
string tmp;
for(int j=i; input[j]!=' '; j++)
{
//add every char to the temp string
tmp+=input[j];
//means we are at the end of the number. convert to int
if(input[i+1]==' ' || input[i+1]==NULL)
{
num=m_atoi(tmp);
i=j;
}
}
}
在 'if(input[i+1]==' '.....' 行中,我得到了一个例外。基本上,我试图只插入“2 2 2 2”。我意识到,每当我尝试比较字符串中的真实空格和'',引发异常。
我试图与空间的 ASCII 值 32 进行比较,但也失败了。有任何想法吗?