标签:one while .com ring 一个 string space gif else
题意:第一个"替换为`` 第二个"替换为‘‘
思路:getline()读取,标记变量标记。
1 #include<cstdio> 2 #include<string> 3 #include <iostream> 4 using namespace std; 5 int main() 6 { 7 string s; 8 int q=1; 9 while(getline(cin,s)){ 10 string :: iterator it; 11 for(it=s.begin(); it!=s.end(); it++){ 12 if(*it==‘"‘){ 13 printf("%s",q ? "``" : "‘‘"); 14 q=!q; 15 } 16 17 else cout << *it; 18 } 19 cout << endl; 20 } 21 return 0; 22 }
标签:one while .com ring 一个 string space gif else
原文地址:http://www.cnblogs.com/seaupnice/p/7631346.html