实现字母的大小写转换。多组输入输出。
多组输入,每一行输入大写字母。
针对每组输入输出对应的小写字母。
输入:
A B
复制输出:
a b
复制
多组输入过程中要注意“回车”也是字母,所以要“吸收”(getchar())掉该字母。
#include <stdio.h>
#include <ctype.h>
int main()
{
char ch=0;
while(scanf("%c",&ch)!=EOF)
{
printf("%c",tolower(ch));
}
}