摘要: c++ 字符串反转的3种方法 1、使用string.h中的strrev函数 #include <iostream> #include <cstring> using namespace std; int main() { char s[] = "hello"; strrev(s); cout<< s 阅读全文
posted @ 2020-08-16 15:02 渔阳俊俊 阅读(4833) 评论(0) 推荐(0) 编辑