gpt4 book ai didi

C 代码不起作用,但未显示错误

转载 作者:太空宇宙 更新时间:2023-11-04 07:17:30 25 4
gpt4 key购买 nike

当我遇到这个障碍时,我正在准备我的计算机科学实践考试。下面的C代码是将取自用户的字符串中的单词全部大写。

#include<stdio.h>
#include<string.h>
#include<ctype.h>

int main()
{
char a[20];
int i;
printf("Enter a string: ");
scanf("%[^\n]s",a);

if(islower(a[0])!=0)
{
a[0]=toupper(a[0]);
}

for(i=0;i<strlen(a);i++)
if(a[i]==' ' && isalpha(a[i+1]!=0))
a[i+1]=toupper(a[i+1]);

printf("%s\n",a);
return 0;
}

但是上面的代码没有执行任务。它接受输入,但给出相同的输出(输入的字符串,原样)。此外,没有显示任何错误或警告。我正在使用 gcc 在 Ubuntu 14.04 中编码。我似乎不明白为什么代码不起作用。

最佳答案

你的 block 应该:

if(islower(a[0])==0)
{
a[0]=toupper(a[0]);
}

正在检查它不等于零而不是零吗?

关于C 代码不起作用,但未显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23433577/

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