我对 C 很陌生,并且有一个非常简单的功能可以在这里显示文件内容。它工作正常,除了我的文件的最后一行打印两次......我知道它必须使用 EOF 但我无法弄清楚如何让函数将 EOF 识别为最后一行并且不再运行. 我知道互联网上有十亿个地方有类似的问题,但很多地方都是针对 C++ 的,而且由于我是新手,我认为最好只使用我自己的代码。这是代码:
{
int count=0, fileEnd=0;
FILE* rockPtr=fopen("rockact.txt", "r");
printf("\n%8s%8s%8s%8s%8s\n", "BANDID", "NAME", "SIZE", "CREW", "TRANS");
do
{
fileEnd=fscanf(rockPtr, "%d%s%d%d%s", &(tempBand.rockid), tempBand.bandname, &(tempBand.bandsize), &(tempBand.crewsize), tempBand.transport);
if (fileEnd !=EOF); //checks EOF has not been reached
{
printf("\n%8d%8s%8d%8d%8s", tempBand.rockid, tempBand.bandname, tempBand.bandsize, tempBand.crewsize, tempBand.transport);
count++;
}
}
while (fileEnd !=EOF);
fclose(rockPtr);
printf("\n The total amount of rock acts on file is %d\n", count);
}