美文网首页
练习2-5-1:判断字符类别(多分支结构,简单循环结构)

练习2-5-1:判断字符类别(多分支结构,简单循环结构)

作者: 笑笑xx | 来源:发表于2021-12-26 14:20 被阅读0次

#include<stdio.h>

int main()

{

    char ch;

    ch=getchar();

    if(ch>='A'&&ch<='Z')

        printf("It's a uppercase letter.");

    else if(ch>='a'&&ch<='z')

        printf("It's a lowercase letter.");

    else if(ch>='0'&&ch<='9')

        printf("It's a numeric character.");

    else

        printf("It's a other character.");

    return 0;

}

相关文章

网友评论

      本文标题:练习2-5-1:判断字符类别(多分支结构,简单循环结构)

      本文链接:https://www.haomeiwen.com/subject/alssqrtx.html