Monday, May 28, 2018

UVA - 272 .cpp file

#include<bits/stdc++.h>
int main()
{
    long int i,c=0;
    char a[20000];
    while(gets(a))
    {

        for(i=0; i<strlen(a); i++)
        {
            if(a[i]=='"')
            {
                c++;
                if(c%2==1)
                    printf("``");
                else
                    printf("''");
            }
            else  printf("%c",a[i]);

        }
        printf("\n");
    }
    return 0;
}

No comments:

Post a Comment