[Error] ISO C++ forbids comparison between pointer and integer [-fpermissive

错误:
if(str[i]==" "||str[i]=="\n") i++;
正确:
if(str[i]==' '||str[i]=='\n') i++;
原因:数据类型不一样

你可能感兴趣的:(操作栏)