在C中使用不同的库

时间:2012-01-26 11:52:14

标签: c function

我只是从头开始编写一个程序,它可以计算用户输入的大写和小写字母以及空格。从那时起,我发现这些特定函数的代码已经在另一个库中预先编写了!我的问题是,如何使用

简化我在下面编写的所有代码 在isupper(int c)中定义的

islower(int c)isspace(int c)ctype.h

#include <stdio.h>

int main(void){
int iochar, numdigits=0, numlower=0, numupper=0, numwhites=0;

printf("Please enter a phrase:\n\n");

while((iochar=getchar())!=EOF) 
{
    if ((iochar==' ')||(iochar=='\t')||(iochar=='\n'))
    {
        numwhites++;
        putchar(iochar);
    }
    else 
        if((iochar>='0')&&(iochar<='9')) 
        {
            numdigits++;
            putchar(iochar);
        }
        else 
            if(('a'<=iochar)&&(iochar<='z')) 
            {
                numlower++;
                putchar(iochar-32);
            } 
            else 
                if(('A'<=iochar)&&(iochar<='Z'))
                {
                    numupper++;
                    putchar(iochar);
                }
                else 
                    putchar(iochar);    
}

printf("%d white characters, %d digits, ",numwhites,numdigits);
printf("%d lowercase have been converted to ",numlower);
printf("uppercase and %d uppercase.\n",numupper);

printf("\n\n");


return 0;}

2 个答案:

答案 0 :(得分:5)

这是写得更好并清理的:

#include <stdio.h>
#include <ctype.h>

int main(int argc, char **argv) {
    int iochar, numdigits=0, numlower=0, numupper=0, numwhites=0;

    printf("Please enter a phrase:\n\n");

    while ((iochar=getchar()) != EOF) {
        // increase counts where necessary
        if (isspace(iochar)) {
            numwhites++;
        } else if (isdigit(iochar)) {
            numdigits++;
        } else if (islower(iochar)) {
            numlower++;
            iochar = toupper(iochar);
        } else if (isupper(iochar)) {
            numupper++;
        }

        // this happens always, don't put it in the if's
        putchar(iochar);
    }

    printf("%d white characters, %d digits, ", numwhites, numdigits);
    printf("%d lowercase have been converted to ", numlower);
    printf("uppercase and %d uppercase.\n", numupper);

    printf("\n\n");

    return 0;
}

答案 1 :(得分:1)

只需#include <ctype.h>然后更改,例如

if((iochar==' ')||(iochar=='\t')||(iochar=='\n'))

if (isspace(iochar))

有关详细信息,请参阅man ctype