TEX Quotes
题意:
变引号。
题解:
要想进步,真的要看一本好书,紫书P45
代码:
#include<stdio.h>
int main()
{
int c,q=1;
while((c=getchar())!=EOF)
{
if (c=='"'){printf("%s",q?"``":"''");q=!q;}
else printf("%c",c);
}
}
变引号。
要想进步,真的要看一本好书,紫书P45
#include<stdio.h>
int main()
{
int c,q=1;
while((c=getchar())!=EOF)
{
if (c=='"'){printf("%s",q?"``":"''");q=!q;}
else printf("%c",c);
}
}