CC1 获取字符串长度
描述
键盘输入一个字符串,编写代码获取字符串的长度并输出,要求使用字符指针实现。
输入描述:
键盘输入一个字符串
输出描述:
输出字符串的长度
示例1
输入:helloworld
输出:10
题解
#include <iostream>
#include<cstring>
using namespace std;
int m_strlen(const char* s) {
if (s == nullptr) {
return -1;
}
int len = 0;
for (int i = 0; s[i] != '\0'; i++) {
len++;
}
return len;
}
int main() {
char s[100000];
cin.getline(s, 100000);
cout << m_strlen(s);
}