UVA 272 - TEX Quotes
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA 272 - TEX Quotes相关的知识,希望对你有一定的参考价值。
题意:将给定字符串中的双引号改为规定格式,左右修改不同
分析:字符串中有空格,插入的引号必须用字符串表示,所有采用逐个字符串处理
注释:水题
1 //#define LOCAL 2 #include"iostream" 3 #include"cstdio" 4 using namespace std; 5 int main() 6 { 7 #ifdef LOCAL 8 freopen("input.txt","r",stdin); 9 freopen("output.txt","w",stdout); 10 #endif // LOCAL 11 bool t=true;char ch; 12 while((ch=getchar())!=EOF) 13 { 14 if(ch==‘"‘) {printf("%s",t?"``":"‘‘");t=!t;} 15 else printf("%c",ch); 16 } 17 return 0; 18 }
以上是关于UVA 272 - TEX Quotes的主要内容,如果未能解决你的问题,请参考以下文章