【HDU 5082】【水题】Love

就是爸爸的名字和妈妈名字加个小。。水题。
#include "stdio.h"
#include "string.h"
int main(int argc, char const *argv[])
{
    int i;
    char f[100];
    char m[100];
    while(~scanf("%s %s",f,m))
    {
        for (i = strlen(f)-1; i >= 0; --i)
        {
            if(f[i]=='_')
                break;
        }
        for (int j = i+1; j < strlen(f); ++j)
        {
            printf("%c",f[j]);
        }
        printf("_small_");
        for (i = strlen(m)-1; i >= 0; --i)
        {
            if(m[i]=='_')
                break;
        }
        for (int j = i+1; j < strlen(m); ++j)
        {
            printf("%c",m[j]);
        }
        printf("\n");
    }
    return 0;
}

你可能感兴趣的:(c,水题)