UVa 272 Tex Quotes --- 水题

Posted tan90丶

tags:

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

 

  题目大意:在TeX中,左引号是 ``,右引号是 ‘‘。输入一篇包含双引号的文章,你的任务是把他转成TeX的格式

  解题思路:水题,定义一个变量标记是左引号还是右引号即可

技术分享
/* UVa 272 Tex Quotes --- 水题 */
#include <cstdio>
#include <cstring>

int main()
{
#ifdef _LOCAL
    freopen("D:\\input.txt", "r", stdin);
#endif

    char c;
    bool flag = 0;
    while ((c = getchar()) != EOF) {
        if (" == c){
            printf("%s", flag ? "‘‘" : "``");
            flag = !flag;
        }
        else{
            putchar(c);
        }
    }

    return 0;
}
View Code

 

以上是关于UVa 272 Tex Quotes --- 水题的主要内容,如果未能解决你的问题,请参考以下文章

UVa 272——TeX Quotes

UVA272 TeX括号(TEX Quotes )

TEX Quotes UVA - 272字符串

UVA 272 TEX Quotes 题解

题解 UVA272 TEX Quotes

POJ 1488 Tex Quotes --- 水题