c语⾔中实现字符串⼤⼩写的转换c语⾔中实现字符串⼤⼩写的转换。
1、
#include <stdio.h>
#include <ctype.h>
void str_toupper(char x[])
{
int i = 0;
while(x[i])
{
x[i] = toupper(x[i]);
i++;
}
}
void str_tolower(char x[])
{
int i = 0;
while(x[i])
{
x[i] = tolower(x[i]);
i++;
}
}
字符串函数中将大写转换为小写
int main(void)
{
char str[128];
printf("str: "); scanf("%s", str);
str_toupper(str);
printf("upper result: %s\n", str);
str_tolower(str);
printf("lower result: %s\n", str);
return0;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论