strtok 与 fgets, atoi

#include<bits/stdc++.h>
using namespace std;
int main()
{
    char str[100];
    char  *token;
    gets(str);
   /// fgets(str,100,stdin);  字符串长度会多加1 ,算上回车了
    cout<<strlen(str);
    //cout<<str<<endl;
    token=strtok(str," ");
    while(token!=NULL)
    {
        int number=atoi(token);
        printf("%d\n",number);
         token=strtok(NULL," ");   ///指针的移动,移动到下一个分割子字符串的地址位置
    }
}

你可能感兴趣的:(strtok 与 fgets, atoi)