美文网首页我家丫头的cpp
cpp 求字符串长度

cpp 求字符串长度

作者: 李药师_hablee | 来源:发表于2019-03-06 20:01 被阅读0次

    宝宝哥2019年3月6日添加

    //string
    #include <iostream>
    #include <cstring>
    using namespace std;
    
    unsigned int strlen(const char *str)
    {   
        int n = 0;
        for (str; *str; str++)
            n++;
        return n;
    }
    
    int main()
    {
        char a[50];
        cin.getline(a, 50, '\n');
        int s = strlen(a);
        cout << s;
        getchar();
        return 0;
    }
    
    捕获.PNG

    相关文章

      网友评论

        本文标题:cpp 求字符串长度

        本文链接:https://www.haomeiwen.com/subject/jvaxpqtx.html