c++编写程序统计字符串的长度。
时间: 2024-04-19 15:08:12 浏览: 83
编写一个程序,求字符串的长度
5星 · 资源好评率100%
可以使用标准库中的`strlen`函数来统计字符串的长度,其函数原型为:
```c++
size_t strlen(const char* str);
```
其中,`str`为要统计长度的字符串的指针,函数返回的是字符串的长度,类型为`size_t`。
下面是一个示例代码:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str[100];
cout << "请输入一个字符串:";
cin.getline(str, 100);
size_t len = strlen(str);
cout << "字符串长度为:" << len << endl;
return 0;
}
```
在代码中,我们首先定义了一个字符数组`str`,用于存储输入的字符串。然后使用`cin.getline`函数从标准输入中读取字符串,最后调用`strlen`函数计算字符串长度,并输出结果。
阅读全文