标签:
1 #include <iostream> 2 #include <set> 3 4 using namespace std; 5 6 int main() 7 { 8 string line; 9 getline(cin,line,‘-‘); //getline用法 10 cout<<line<<endl; 11 cout<<line.size()<<endl; //<iostream>中包含<string> 12 cout<<line[0]<<endl; //访问数组中的字符 13 14 return 0; 15 }
标签:
原文地址:http://www.cnblogs.com/hu983/p/5313090.html