2023年12月22日发(作者:)
//d fanzhuan(char *str){ char *star = str; char *end = str; while (*end != '0') { end++; } end--; while (star < end) { char temp; temp = *star; *star = *end; *end = temp; star++; end--; }}
//#include
2023年12月22日发(作者:)
//d fanzhuan(char *str){ char *star = str; char *end = str; while (*end != '0') { end++; } end--; while (star < end) { char temp; temp = *star; *star = *end; *end = temp; star++; end--; }}
//#include
发布评论