#include <stdio.h>
#include <ctype.h> // 引入ctype.h库以使用toupper和tolower函数 int main() { char str[100]; int choice; printf("Enter a string: "); fgets(str, sizeof(str), stdin); // 使用fgets读取字符串,包括空格 printf("1. Convert to uppercase\n"); printf("2. Convert to lowercase\n"); printf("Enter your choice: "); scanf("%d", &choice); if (choice == 1) { for (int i = 0; str[i] != '\0'; i++) { str[i] = toupper(str[i]); // 使用toupper函数将小写字母转换为大写字母 } } else if (choice == 2) { for (int i = 0; str[i] != '\0'; i++) { str[i] = tolower(str[i]); // 使用tolower函数将大写字母转换为小写字母 } } else { printf("Invalid choice!\n"); return 1; } printf("Converted string: %s", str); return 0;
}
这个程序首先要求用户输入一个字符串,然后要求用户选择是将字符串转换为大写还是小写。如果用户选择1,程序将使用toupper
函数将字符串中的所有小写字母转换为大写字母。如果用户选择2,程序将使用tolower
函数将字符串中的所有大写字母转换为小写字母。最后,程序输出转换后的字符串。