关于字符串反转的问题

发布于 2024-12-05 06:40:20 字数 371 浏览 0 评论 0原文

我得到以下输出:Olleh.hello,但无法弄清楚我要去哪里!

 int main()
    {

       char hello[6] = "hello";
       char temp[6]; 
       unsigned int t = 0;
       for(int i=strlen(hello)-1;i>=0;i--)
       {
       if(t<strlen(hello))
        {
          temp[t] = hello[i];
          t++;
        }
      }
      cout << temp;
      return 0;
    }

I get the following output: olleh�hello but can't figure out where I'm going wrong!

 int main()
    {

       char hello[6] = "hello";
       char temp[6]; 
       unsigned int t = 0;
       for(int i=strlen(hello)-1;i>=0;i--)
       {
       if(t<strlen(hello))
        {
          temp[t] = hello[i];
          t++;
        }
      }
      cout << temp;
      return 0;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

飞烟轻若梦 2024-12-12 06:40:20

您需要在字符串末端的空终止器:

int main()
{

   char hello[6] = "hello";
   char temp[6]; 
   unsigned int t = 0;
   for(int i=strlen(hello)-1;i>=0;i--)
   {
   if(t<strlen(hello))
    {
      temp[t] = hello[i];
      t++;
    }
  }
  temp[t] = '\0';
  cout << temp;
  return 0;
}

You need a null terminator at the end of the string:

int main()
{

   char hello[6] = "hello";
   char temp[6]; 
   unsigned int t = 0;
   for(int i=strlen(hello)-1;i>=0;i--)
   {
   if(t<strlen(hello))
    {
      temp[t] = hello[i];
      t++;
    }
  }
  temp[t] = '\0';
  cout << temp;
  return 0;
}
孤凫 2024-12-12 06:40:20

您将问题标记为[C ++],因此这里是C ++反向字符串的方法:

#include <iostream>
#include <string>
#include <algorithm>

int main()
{
    std::string hello = "hello";
    std::reverse(hello.begin(), hello.end());
    std::cout << hello << std::endl;
}

在这里很难犯任何错误

you tagged the question as [C++], so here's C++ way to reverse string:

#include <iostream>
#include <string>
#include <algorithm>

int main()
{
    std::string hello = "hello";
    std::reverse(hello.begin(), hello.end());
    std::cout << hello << std::endl;
}

it's difficult to make any mistake here

卸妝后依然美 2024-12-12 06:40:20

您没有使用null终止temp\ 0),因此temp不是有效的字符串,cout 不知道该怎么办。 您的问题将消失。

temp[5] = 0;

如果您添加: 循环之后,

You aren't terminating temp with a null (\0), so temp isn't a valid string and cout doesn't know quite what to do with it. Your problem will go away if you add:

temp[5] = 0;

after the for loop.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文