练习1:
- 定义自己的命名空间my_sapce,在my_sapce中定义string类型的变量s1,再定义一个函数完成对字符串的逆置。
#include <iostream>
using namespace std;
namespace my_space {
string s1="hello world";
void my_strreverse(string str);
}
using namespace my_space;
int main()
{
my_strreverse(s1);
cout << s1 << endl;
return 0;
}
void my_space::my_strreverse(string str){
int m=0;
int n=s1.length()-1;
char c;
while(s1.at(m)!=s1.at(n)){
c=s1.at(n);
s1.at(n)=s1.at(m);
s1.at(m)=c;
m++;
n--;
}
}