#include <stdio.h>
int main()
{
int c;
bool q = true;
while((c = getchar()) != EOF)
{
if(c == '"')
{
printf("%s", q ? "``" : "''");
q = !q;
}
else
printf("%c", c);
}
return 0;
}
UVa272——TEX Quotes
最新推荐文章于 2022-07-11 16:14:23 发布