https://vjudge.net/problem/UVA-272
【分析】:标记一下。
【代码】:
#include <bits/stdc++.h> using namespace std ; int n,m; int main() { int f=1; char c; while(scanf("%c",&c) != EOF) { if(c == ‘"‘) { printf("%s",f ? "``":"‘‘"); f=!f; } else { putchar(c); } } }
Posted Roni
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TEX Quotes UVA - 272字符串相关的知识,希望对你有一定的参考价值。
https://vjudge.net/problem/UVA-272
【分析】:标记一下。
【代码】:
#include <bits/stdc++.h> using namespace std ; int n,m; int main() { int f=1; char c; while(scanf("%c",&c) != EOF) { if(c == ‘"‘) { printf("%s",f ? "``":"‘‘"); f=!f; } else { putchar(c); } } }
以上是关于TEX Quotes UVA - 272字符串的主要内容,如果未能解决你的问题,请参考以下文章