当我使用时getline,我会输入一串字符串或数字,但是如果它不是数字,我只希望while循环输出“单词”。那么,有什么方法可以检查“单词”是否为数字?我知道我可以atoi()用于C字符串,但是对于字符串类的字符串呢?int main () { stringstream ss (stringstream::in | stringstream::out); string word; string str; getline(cin,str); ss<<str; while(ss>>word) { //if( ) cout<<word<<endl; }}
3 回答
- 3 回答
- 0 关注
- 520 浏览
添加回答
举报
0/150
提交
取消