UVA272 TeX括号(TEX Quotes )

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA272 TeX括号(TEX Quotes )相关的知识,希望对你有一定的参考价值。

技术分享

题意:第一个"替换为``   第二个"替换为‘‘

思路: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 }
View Code

 

以上是关于UVA272 TeX括号(TEX Quotes )的主要内容,如果未能解决你的问题,请参考以下文章

UVa 272 Tex Quotes --- 水题

UVA 272 - TEX Quotes

TEX Quotes UVA - 272字符串

UVA 272 TEX Quotes 题解

题解 UVA272 TEX Quotes

[Uva] Tex Quates (272)