如何把一个字语数都变成大写字
时间: 2024-03-17 11:44:28 浏览: 37
你可以使用编程语言中的字符串函数将一个字符串中的所有字母转换成大写字母。具体方法会因编程语言而异,以下是几种常见编程语言的示例:
Python:
```
string = "hello world"
string = string.upper()
print(string)
```
输出: HELLO WORLD
Java:
```
String string = "hello world";
string = string.toUpperCase();
System.out.println(string);
```
输出: HELLO WORLD
C++:
```
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
string str = "hello world";
transform(str.begin(), str.end(), str.begin(), ::toupper);
cout << str << endl;
return 0;
}
```
输出: HELLO WORLD
以上示例均将字符串中的所有字母转换成大写字母。
阅读全文