我在句子字符中输出文本有问题。当我提示时: 你好!你好。我很好。
我期待输出: 你好!你好。我没事。
但是我的示例运行输出是: 你好!你好。我没事。
我的代码在'!'/'。'/'''/'_'之后无法输出大写 任何人都可以告诉我犯了什么错误?提前谢谢。
-Ellie
示例代码:
printf ("\n\nThe line of the text in sentence case is:\n");
i = 0;
text_ptr = text;
up = 1; /* up = 1 means upper case is yes */
while ( *(text_ptr+i) != '\0') /* could have been: while(text[i]) */
{
if(!up)
if( *(text_ptr+i-1)==' ' && toupper(*(text_ptr+i)=='I' && (*(text_ptr+i+1)==' ' ||
*(text_ptr+i+1)=='.' || *(text_ptr+i+1)=='!' || *(text_ptr+i+1))=='?') )
up = 1; /* capitalize i if all alone */
if(up)
if (*(text_ptr+i)!=' ' || *(text_ptr+i+1)=='.' || *(text_ptr+i+1)=='!' || *(text_ptr+i+1)=='?')
{
putchar(toupper(*(text_ptr++)));
up = 0;
} /* end if */
else
putchar(tolower(*(text_ptr++)));
else
{
putchar(tolower(*(text_ptr+i)));
if (*(text_ptr)=='?' || *(text_ptr)=='.' || *(text_ptr)=='!')
up = 1;
i++;
} /* end else */
}/* end while */`
答案 0 :(得分:0)
再一次。在代码中主演了一点后,我看到了
text_ptr++
i
部分递增else
text_ptr++
和text_ptr+i
...什么难以理解所以我完全修改了我的版本:
int i = 0;
int up = 1; /* up = 1 means next char should be upper case*/
char* text_ptr = text;
while (*(text_ptr+i) != '\0') { /* could have been: while(text[i]) */
if(!up)
if(*(text_ptr+i-1)==' ' && toupper(*(text_ptr+i))=='I' &&
(*(text_ptr+i+1)==' ' || *(text_ptr+i+1)=='.' || // fix bracket here
*(text_ptr+i+1)=='!' || *(text_ptr+i+1)=='?')) { // "i" foll. by one of those
up = 1; /* capitalize i if all alone */
}
if(up)
if (*(text_ptr+i)!=' ' && *(text_ptr+i)!='.' && // fix here
*(text_ptr+i)!='!' && *(text_ptr+i)!='?') { // anything else than these
putchar(toupper(*(text_ptr+i))); // toupper and reset up
up = 0;
} /* end if */
else
putchar(tolower(*(text_ptr+i))); // just print
else
{
putchar(tolower(*(text_ptr+i)));
if (*(text_ptr+i)=='?' || *(text_ptr+i)=='.' || *(text_ptr+i)=='!')
up = 1;
} /* end else */
i++;
}/* end while */
请注意,此版本确实需要再次toupper
。否则将降低正确的I
。你的第四个if
也可以正常工作(我监督,你没有重置空格的up
标志)。