#include <cstdio>
using namespace std;
//谢谢博友程序
//包括换行
int main()
{
int js=0;
while(1)
{
char c;
c=getchar();
if(c==EOF)
{
break;
}
if((c=='"')&&(js%2==0))
{
printf("``");
js++;
}else if((c=='"')&&(js%2==1))
{
printf("''");
js++;
}else
{
printf("%c",c);
}
}
return 0;
}
将文章中第一个双引号替换成``,第二个双引号替换成'',以此类推替换所有双引号。