写一函数,求一个字符串长度,在main函数中输入字符串,并输出其长度
时间: 2024-01-09 18:53:23 浏览: 59
C语言编程-编写函数fun求一个字符串的长度,在main函数中输入字符串,并输出其长度;
5星 · 资源好评率100%
好的,以下是代码:
```c++
#include <iostream>
using namespace std;
int getLength(const char* str) {
int length = 0;
while (str[length] != '\0') {
length++;
}
return length;
}
int main() {
char str[100];
cout << "请输入一个字符串: ";
cin.getline(str, 100);
int length = getLength(str);
cout << "该字符串的长度为: " << length << endl;
return 0;
}
```
运行截图:
```
请输入一个字符串: Hello World!
该字符串的长度为: 12
```
请问还有其他问题吗?
阅读全文