gpt4 book ai didi

c - 我的 C 程序自行输出

转载 作者:行者123 更新时间:2023-11-30 15:44:54 25 4
gpt4 key购买 nike

为什么我的程序读取程序本身而不是我的文本文件?我想做的是读取一个文本文件并找出哪一行文本最长,然后输出该行及其包含的字符数。

#include <stdio.h>

#define MAXLINE 1000 /* maximum input line size */

int getline1(char line[], int maxline);
void copy1(char to[], char from[]);

/* print longest input line */
int main(void)
{
int len; /* current line length */
int max; /* maximum length seen so far */
char line[MAXLINE]; /* current input line */
char longest[MAXLINE]; /* longest line saved here */

max = 0;

FILE *ptr_file;
ptr_file =fopen("textfile.txt","r");
if (!ptr_file)
return 1;

while (fgets(line,1000, ptr_file)!=NULL)
//printf("%s",line);
//fclose(ptr_file);
//return 0;

while((len = getline1(line, MAXLINE)) > 0)
{
printf("%d: %s", len, line);

if(len > max)
{
max = len;
copy1(longest, line);
}
}
if(max > 0)
{
printf("Longest is %d characters:\n%s", max, longest);
}
printf("\n");
return 0;

} //end main

/* getline: read a line into s, return length */
int getline1(char s[], int lim)
{
int c, i, j;

for(i = 0, j = 0; (c = getchar())!=EOF && c != '\n'; ++i)
{
if(i < lim - 1)
{
s[j++] = c;
}
}
if(c == '\n')
{
if(i <= lim - 1)
{
s[j++] = c;
}
++i;
}
s[j] = '\0';
return i;
}

/* copy: copy 'from' into 'to'; assume 'to' is big enough */
void copy1(char to[], char from[])
{
int i;

i = 0;
while((to[i] = from[i]) != '\0')
{
++i;
}
}

最佳答案

main 中的 while 循环应该如下所示(不需要内部循环,其中 getline1() getchar() 从 stdin 读取):

  while (fgets(line, 1000, ptr_file)!=NULL) {
len = strlen(line);
if (len > max) {
max = len;
strncpy(longest, line, 1000);
}

关于c - 我的 C 程序自行输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19282921/

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