返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main(){
  6.         string str="123.45.6789.111213";      
  7.         str+=".";        
  8.         string res[50];
  9.         string tmp="";      
  10.         int index=0;
  11.         for(int i=0;i<str.size();i++){
  12.                 if(str[i]=='.'){
  13.                         res[index]=tmp;      
  14.                         tmp="";        
  15.                         index++;
  16.                 }
  17.                 else{
  18.                         tmp+=str[i];        
  19.                 }
  20.         }
  21.         for(int i=0;res[i]!="";i++){
  22.                 cout<<res[i]<<endl;
  23.         }
  24.         system("pause");
  25.         return 0;
  26. }
複製代碼

TOP

返回列表