qfedu-cpp-level/day9/homework/h1.cpp

16 lines
347 B
C++
Raw Normal View History

2023-08-14 17:20:39 +08:00
// 【场景】字符串反转
// 编写一个函数 reverseString接受一个字符串作为参数并返回该字符串的反转版本。
#include <bits/stdc++.h>
using namespace std;
string reverseString(string &other)
{
}
int main()
{
cout << "反转后的字符串 hello 为: " << reverseString("hello") << endl;
return 0;
}