2021华为优招笔试题

问题
将字符串中的每个单词的第一个字母变成大写字母,字符串中的元音A、O、E、I,U出现都是以AA、OO、EE、II、UU出现的。请将它们变成正常的风格,方便阅读。
代码

#include 
int main()
{
    int i;
    int word;
    char str[200];
    int alphbet[256] = {0};
    while (gets(str) != NULL) {
        word = 0;
        for (i = 0; str[i] != '\0'; i++) {
            if (str[i] == ' ') {
                word = 0;
                printf(" ");
            }
            else if (word == 0) {

                word = 1;//进入到一个新的单词里面
                if (str[i] == 'O' || str[i] == 'A' || str[i] == 'E'//既是单词的第一个字母又是元音字母怎么办???
                    || str[i] == 'I' || str[i] == 'U') {
                    ++alphbet[str[i]];
                    if (alphbet[str[i]] == 1) {
                        printf("%c", str[i]);
                    }
                    else
                        alphbet[str[i]] = 0;
                }
                else {
                    str[i] = str[i] - 32;//转大写
                    printf("%c", str[i]);
                }

            }
            else if (str[i] == 'O' || str[i] == 'A' || str[i] == 'E'
                || str[i] == 'I' || str[i] == 'U') {
                ++alphbet[str[i]];
                if (alphbet[str[i]] == 1) {
                    str[i] = str[i] + 32;//转小写
                    printf("%c", str[i]);
                }
                else
                    alphbet[str[i]] = 0;
            }
            else {
                printf("%c", ;str[i])
            }
        }
        printf("\n");
    }
    return 0;
}

你可能感兴趣的:(C,其他)