TEX Quotes , UVa272

缪志新
2023-12-01
#include<bits/stdc++.h>

using namespace std;

int main()
{
    
    int c;
    int q = 1;
    
    while((c = getchar())!= EOF)
    {
        if(c == '"')
        {
            printf("%s",q ? "``" : "''"); q = !q;
        }
        
        else printf("%c",c);    
    }
    
    return 0;
    
}
 类似资料:

相关阅读

相关文章

相关问答