BC28 大小写转换

描述

实现字母的大小写转换。多组输入输出。

输入描述:

多组输入,每一行输入大写字母。

输出描述:

针对每组输入输出对应的小写字母。

示例1

输入:

A
B

复制输出:

a
b

复制

备注:

多组输入过程中要注意“回车”也是字母,所以要“吸收”(getchar())掉该字母。
#include 
#include 
int main()
{
    char ch=0;
    while(scanf("%c",&ch)!=EOF)
    {
        printf("%c",tolower(ch));
    }
    
    
    
}

你可能感兴趣的:(c++,c语言)