PersonalCorpus 版 (精华区)
1148171 Big Guava ... 272 Accepted
0:00.040 396 2002/10/05 21:06:16.406
void main()
{
#ifndef ONLINE_JUDGE
freopen("c:\\0acm\\uva\\i272","r",stdin);
freopen("c:\\0acm\\uva\\o272","w",stdout);
#endif
char ch;
bool odd=true;
while (1) {
scanf("%c",&ch);
if (feof(stdin)) break;
if (ch=='\"')
if (odd) {
odd=false;
printf("``");
} else {
odd=true;
printf("''");
}
else printf("%c",ch);
}
}
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.647毫秒