#include
#include
int main()
{
char str[10];
printf("请输入一个字符串:");
scanf("%s",str);
for(int i=0;i{
if(str[i]>='A'&&str[i]<='Z')
str[i]=(char) (str[i]+32);
}
printf("%s",str);
}
string str = "ABcdEf"; str.ToLower();//转为小写abcdef str.ToUpper();//转为大写ABCDEF
请看MSDN文档字符串的方法里面有