gpt4 book ai didi

打印所有超过 5 个字符的行的代码

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

我正在尝试编写应该打印超过 5 个字符的所有行的代码,但我不知道代码中问题出在哪里。你能帮忙吗?

#include <stdio.h>

int main()
{
int i, s, n ;
char c, t[100];
n=0;
puts("start taping lines");
while(c=getchar()!=EOF)
{
s=0;

while(c!='/n')
{

++s;
}
if (s>=5){
t[n]=c ;
++n;
}
}

puts("lines >80 char =/n");
for(i=0;i<=n;++i)
{
printf("%s /n",t[i]);
}
return 0;
}

最佳答案

char *line;

if (strlen(line) >= 5)
printf(line);

在 C 库中查找 strlen() 函数。

关于打印所有超过 5 个字符的行的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49205249/

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