编写程序求一个字符串的长度。
时间: 2023-06-19 19:04:33 浏览: 89
在大多数编程语言中,可以使用内置函数或方法来获取字符串的长度。以下是几个例子:
在 Python 中,可以使用 `len()` 函数来获取字符串的长度:
```python
string = "Hello, world!"
length = len(string)
print(length) # 输出 13
```
在 Java 中,可以使用 `length()` 方法来获取字符串的长度:
```java
String string = "Hello, world!";
int length = string.length();
System.out.println(length); // 输出 13
```
在 C++ 中,可以使用 `length()` 方法或者 `size()` 方法来获取字符串的长度:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "Hello, world!";
int length = str.length(); // 或者 int length = str.size();
cout << length << endl; // 输出 13
return 0;
}
```
在 JavaScript 中,可以使用 `length` 属性来获取字符串的长度:
```javascript
let string = "Hello, world!";
let length = string.length;
console.log(length); // 输出 13
```
以上是几个常见编程语言中获取字符串长度的方法。
阅读全文