0

我无法理解这段代码的输出

#include<iostream>
#include<stdio.h>

using namespace std;

int main() {
    int i = 0;
    int j = 0;
    int k = 0;

    char ch[2][14];
    char re[2][14];

    cout << "\nEnter 1st string \n";
    cin.getline(ch[0], 14);

    cout << "\nEnter the 2nd string\n";
    cin.getline(ch[1], 14);

    for(i = 0; i < 2; i++) {
        int len = strlen(ch[i]);
        for(j = 0, k = len - 1; j < len; j++, k--) {
            re[i][j]=ch[i][k];
        }
    }
    cout << "\nReversed strings are \n";
    cout << re[0];
    cout << endl << re[1] << endl;
    return 0;
}

例如

 /* 
    Input : 
    hello
    world

    Output :
    olleh<some garbage value>dlrow
    dlrow
  */

对不起,如果它非常基本,但我无法理解原因。提前致谢。

4

3 回答 3

1

确保re[0]andre[1]是空终止的

例如在初始化期间你可以做

for (int i = 0; i < 14; i++)
{
    re[0][i] = '\0';
    re[1][i] = '\0';
}

但除此之外,我建议使用std::stringandstd::reverse之类的。

于 2014-08-15T12:12:18.620 回答
1
for (i = 0; i < 2; i++)
{
    int len = strlen(ch[i]);
    for (j = 0, k = len - 1; j < len; j++, k--)
    {
        re[i][j] = ch[i][k];
    }
    re[i][len] = '\0';
}

你必须终止你的反向字符串。

你也应该#include <string.h>为这个strlen()功能。

于 2014-08-15T12:15:39.680 回答
0

您忘记了数组中字符串的终止零re只需按以下方式定义数组

char ch[2][14] , re[2][14] = {};
                           ^^^^

还要考虑到您应该删除 header <stdio.h>,因为它没有被使用,而是包含 header <cstring>

可以使用标准算法完成此任务std::reverse_copy

例如

#include <iostream>
#include <algorithm>
#include <cstring>

int main() 
{
    const size_t N = 2;
    const size_t M = 14;

    char ch[N][M] = {};
    char re[N][M] = {};

    std::cout << "\nEnter 1st string: ";
    std::cin.getline( ch[0], M );

    std::cout << "\nEnter the 2nd string: ";
    std::cin.getline( ch[1], M );

    std::cout << std::endl;

    for ( size_t i = 0; i < N; i++ )
    {
        std::reverse_copy( ch[i], ch[i] + std::strlen( ch[i] ) , re[i] );
    }

    for ( const auto &s : re ) std::cout << s << std::endl;

    return 0;
}
于 2014-08-15T12:23:12.107 回答