poj3749

    技术2024-11-19  6

    #include <stdio.h>#include <stdlib.h>#include <string.h>

     

    int main(){

        char str[200];    char *p;    gets(str);    while(strcmp(str,"ENDOFINPUT") != 0)    {    if(strcmp(str,"START")==0)    {    gets(str);    p = str;

        while(*p != '/0')    {      if(*p >= 'F')        *p = *p-5;    else    {    if(*p == 'E') *p = 'Z';        if(*p == 'D') *p = 'Y';     if(*p == 'C') *p = 'X';    if(*p == 'B') *p = 'W';    if(*p == 'A') *p = 'V';    }       p++;        }    puts(str);    }       gets(str);    if(strcmp(str,"END") == 0)        gets(str);  }       return 0;}

    最新回复(0)