题解 | 获取字符串长度
#include <iostream> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); // write your code here...... int len; for (int i = 0; i < sizeof(str); i++){ if (*(str + i) == '\0') { len = i; break; } } cout << len << endl; return 0; }