1,strlen函数的实现
//题目一:strlen函数的实现 //1,注意异常抛出 //2,注意蒋行参用const来修饰 int strlen(const char* str){ int len=0; while(*str++!='