gpt4 book ai didi

c - 如何以这种简单的方式做倒装句?

转载 作者:行者123 更新时间:2023-11-30 19:05:57 25 4
gpt4 key购买 nike

我对这段代码有疑问,它应该构成一个相反的句子。

示例:

输入

Hi my name is Robert

输出

Robert is name my Hi
<小时/>
#include <stdio.h>

#define LEN 50

int main(void)
{
char input, terminator = 0, sentence[LEN+1] = {0};
int i, j, last_space = LEN + 1, posc=0;;
int pos[]={0};

printf("\nEnter a sentence: ");
for (i = 0; (input = getchar()) != '\n'; i++)
{
if(input== ' '){
pos[posc]=i;
posc++;
}
if (input == '.' || input == '?' || input == '!')
{
last_space = i;
terminator = input;
break;
}

sentence[i] = input;
}

if (terminator == 0)
{
printf("Sentence needs a terminating character. (./?/!)\n\n");
return 0;
}

printf("Reversal of sentence: ");
for (i = last_space; i > 0; i--)
{
if (sentence[i] == ' ')
{
for (j = i + 1; j != last_space; j++)
{
putchar(sentence[j]);
}
last_space = i;
putchar(sentence[i]);
}
}
while (sentence[i] != '\0' && sentence[i] != ' ')
{
putchar(sentence[i++]);
}
printf("%c\n\n", terminator);
for(int i=sizeof(pos)-1; i>0; i--){
printf("%.*s", sentence[pos[i-1]], sentence[pos[i]]);
}
printf("%c\n\n", terminator);
return 1;
}

由于这里底部的方法,这一直崩溃:

printf("%c\n\n", terminator);
for(int i=sizeof(pos)-1; i>0; i--){
printf("%.*s", sentence[pos[i-1]], sentence[pos[i]]);
}
printf("%c\n\n", terminator);
return 1;
}

有人可以帮我修复这段代码,以便这两种方法在运行时都可以工作吗?谢谢。

最佳答案

大小为 1 的数组由以下行创建:

int pos[]={0};

稍后您将在此处访问超出数组的限制:

if(input== ' '){
pos[posc]=i;
posc++;
}

此后行为未定义。您提到的代码中也存在同样的错误,因为 sizeof 返回以字节为单位的大小,而不仅仅是元素的数量。

关于c - 如何以这种简单的方式做倒装句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48871795/

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