0
点赞
收藏
分享

微信扫一扫

UVa272 - Tex Quotes


//UVa272 - Tex Quotes
#include<stdio.h>
int main(){
int ch, q = 1;
while((ch = getchar()) != EOF){
if(ch == '"'){printf("%s",q?"``":"''"); q = !q;}else
putchar(ch);
}
return 0;
}


举报

相关推荐

0 条评论