c++中字符串反轉的3種方法

第一種:使用string.h中的strrev函數ios #include <iostream> #include <cstring> using namespace std; int main() { char s[]="hello"; strrev(s); cout<<s<<endl; return 0; }第二種:使用algorithm中的reverse
相關文章
相關標籤/搜索