码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 272 - TEX Quotes

时间:2016-03-29 00:54:52      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

题意:将给定字符串中的双引号改为规定格式,左右修改不同

分析:字符串中有空格,插入的引号必须用字符串表示,所有采用逐个字符串处理

注释:水题

 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

标签:

原文地址:http://www.cnblogs.com/nuc-gxg/p/5331245.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!