POJ 1488 Tex Quotes --- 水题

Posted tan90丶

tags:

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

 

  POJ 1488

  题目大意:给定一篇文章,将它的左引号转成 ``(1的左边),右引号转成 ‘‘(两个 ‘ )

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

技术分享
/* POJ 1488 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

 

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

UVa 272 Tex Quotes --- 水题

UVA272 TeX括号(TEX Quotes )

UVA 272 - TEX Quotes

UVA 272 TEX Quotes 题解

TEX Quotes UVA - 272字符串

UVA11053 POJ2939 HDU1488 Flavius Josephus Reloaded循环节