my_strlen()时间:2023-12-28 21:17:56int my_strlen(const char* S){ int i=0; while('\0'!=*(S+i)){ i++; } return i; }