C语言代码 将单词中大写字母转小写字母并输出单词
时间: 2024-05-03 09:23:20 浏览: 86
C语言——大写字母转为小写字母
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char word[100];
printf("请输入一个单词:");
scanf("%s", word);
for (int i = 0; word[i] != '\0'; i++) {
word[i] = tolower(word[i]);
}
printf("转换后的单词为:%s", word);
return 0;
}
```
注:该代码使用了 `<ctype.h>` 中的 `tolower()` 函数,将大写字母转换为小写字母。
阅读全文