小写字母转大写
时间: 2023-08-30 22:06:04 浏览: 17
小写字母改大写
在大多数编程语言中,可以使用内置的函数或方法将小写字母转换为大写字母。以下是几种常见的方法:
在 Python 中,可以使用 `upper()` 方法将字符串中的小写字母转换为大写字母,例如:
```
string = "hello world"
upper_string = string.upper()
print(upper_string)
```
输出:
```
HELLO WORLD
```
在 Java 中,可以使用 `toUpperCase()` 方法将字符串中的小写字母转换为大写字母,例如:
```
String string = "hello world";
String upperString = string.toUpperCase();
System.out.println(upperString);
```
输出:
```
HELLO WORLD
```
在 C++ 中,可以使用 `<ctype.h>` 头文件中的 `toupper()` 函数将字符转换为大写字母,例如:
```
#include <iostream>
#include <ctype.h>
int main() {
char c = 'a';
char upperC = toupper(c);
std::cout << upperC << std::endl;
return 0;
}
```
输出:
```
A
```
阅读全文