标签:
题意:将给定字符串中的双引号改为规定格式,左右修改不同
分析:字符串中有空格,插入的引号必须用字符串表示,所有采用逐个字符串处理
注释:水题
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 }
标签:
原文地址:http://www.cnblogs.com/nuc-gxg/p/5331245.html