计算字符串最后一个单词的长度,单词以空格隔开。
1 #include<iostream> 2 #include<string> 3 #include<vector> 4 5 using namespace std; 6 7 int main() 8 { 9 string input; 10 vector<string> arr; 11 12 13 while(cin>>input) 14 { 15 arr.push_back(input); /*使用动态数组来做,输入的字符串依次存入数组中,最后返回数组中最后一个元素(字符串)的长度*/ 16 } 17 18 cout<<arr[arr.size()-1].length()<<endl; 19 return 0; 20 }
原文:http://www.cnblogs.com/hellochennan/p/6667294.html