#include int main(void){ char str[7]; scanf("%s",str); for(int i = 0;i < 7 - 1;i ++){ if(str[i] == 'a' && str[i + 1] == 'o'){ printf("文字:%c 文字+1:%c\n",str[i],str[i + 1]); str[i] = 'k'; str[i + 1] = 'i'; } } for(int i = 0;i < 7;i ++){ printf("%c",str[i]); } }