c语言字母小写转大写用字符串写的程序
时间: 2023-12-01 22:04:04 浏览: 145
以下是一个用字符串写的C语言程序,用于将字符串中的小写字母转换为大写字母:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[100];
int i;
printf("请输入一个字符串:\n");
gets(str);
for(i = 0; i < strlen(str); i++) {
if(str[i] >= 'a' && str[i] <= 'z') {
str[i] = str[i] - 32;
}
}
printf("转换后的字符串为:\n%s", str);
return 0;
}
```
这个程序使用了字符串数组来存储用户输入的字符串,然后使用 for 循环遍历字符串中的每个字符,如果该字符是小写字母,则将其转换为大写字母。最后,使用 printf 函数将转换后的字符串输出到终端。注意,这个程序使用了 gets 函数来读取用户的输入,但是 gets 函数已经被认为是不安全的,因为它无法防止缓冲区溢出攻击。在实际的程序中,应该使用更加安全的函数来读取用户的输入,比如 fgets 函数。
相关问题
c语言字符串字母小写转大写程序
下面是一个 C 语言字符串中字母小写转大写的示例程序:
```c
#include <stdio.h>
#include <ctype.h>
void to_upper(char *str) {
while (*str) {
if (isalpha(*str)) { // 判断字符是否是字母
*str = toupper(*str); // 将小写字母转成大写字母
}
str++;
}
}
int main() {
char str[100];
printf("请输入一个字符串:");
fgets(str, sizeof(str), stdin);
to_upper(str);
printf("转换后的字符串为:%s", str);
return 0;
}
```
程序中依然使用了 `toupper()` 函数将字符串中的小写字母转成大写字母,但是在遍历字符串中的每个字符之前增加了一个判断:`if (isalpha(*str))`,用来判断当前字符是否是字母。只有在是字母的情况下,才需要将小写字母转成大写字母。其他的字符(如数字、标点符号等)则不做处理。
c语言字符串小写转大写程序
下面是一个 C 语言字符串小写转大写的示例程序:
```c
#include <stdio.h>
#include <ctype.h>
void to_upper(char *str) {
while (*str) {
*str = toupper(*str);
str++;
}
}
int main() {
char str[100];
printf("请输入一个字符串:");
fgets(str, sizeof(str), stdin);
to_upper(str);
printf("转换后的字符串为:%s", str);
return 0;
}
```
程序中使用了 `toupper()` 函数将字符串中的小写字母转成大写字母。函数 `to_upper()` 接受一个指向字符串的指针,然后遍历字符串中的每个字符,将小写字母转成大写字母。 `main()` 函数中获取用户输入的字符串,调用 `to_upper()` 函数将其转换成大写字母,并输出结果。
阅读全文