C++day1作业

C++day1作业_第1张图片

 定义自己的命名空间myspace,并在myspace中定义一个字符串,实现求字符串大小的函数。

#include 

using namespace std;
namespace zzw {
    static string str="hello world";
}
int size_str()
{
    string str1=zzw::str;
    return str1.size();
}

int main()
{
    int size = size_str();
    cout << "字符串长度是:" << size << endl;
    return 0;
}

你可能感兴趣的:(c++,开发语言,算法)