gpt4 book ai didi

c++ - 使用 strrev 在 C++ 中正确反转字符串

转载 作者:太空宇宙 更新时间:2023-11-04 16:05:11 27 4
gpt4 key购买 nike

我希望用户输入 strrev 的字符串来反转,但是当用户输入字符串时出于某种原因不允许空格,所以如果有人输入 hello,我的名字是 stan。输出只有 nats,我怎样才能得到接受空格的函数?

#include<iostream>
#include <cstring>
#include<string.h>
using namespace std;
int main()
{
char str[] = "This is a c-StyleString";
//cout <<"Enter the string:" << endl;
//cin >> str;
cout << "Reverse of the given string is: " << strrev(str);
return 0;
}

最佳答案

strrev 是一个已弃用的函数,它仅在 Microsoft 工具链中可用,不应使用。您可以使用 std::reverse 反转字符串。

关于c++ - 使用 strrev 在 C++ 中正确反转字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36696323/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com