问答详情
源自:5-4 形参与实参

急急急,求解。初级程序题

输入一个字符判断若输入的为英文字符则输出english word若输入的为数字字符则输出number word否则则输出The other word

提问者:qq_龙戈_0 2017-11-16 14:38

个回答

  • 慕侠6294014
    2017-11-16 17:34:39
    已采纳

    #include<stdio.h>

    int main()

    {

    char word;


    printf("请输入字母:\n");

    scanf("%c", &word);


    if (word >= 65 && word <= 122)

    printf("english word!\n");

    else if (word >= 48 && word <= 57)

    printf("number word!\n");

    else

    printf("The other word!\n");

    return 0;

    }