将大写字母化为小写
#include<stdio.h>
main()
{
char x;
scanf("%c\n",&x);
if(x>='A'&&x<='Z')
{
x=x+'a'-'A';
}
else
{
x=x;
}
printf("%c\n",x);
return 0;
}
#include<stdio.h>
main()
{
char x;
scanf("%c\n",&x);
if(x>='A'&&x<='Z')
{
x=x+'a'-'A';
}
else
{
x=x;
}
printf("%c\n",x);
return 0;
}
举报