作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对这段代码有疑问,它应该构成一个相反的句子。
示例:
输入
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/
我是一名优秀的程序员,十分优秀!