Varible 2020-03-22 18:20 采纳率: 66.7%
浏览 351
已采纳

C/C++ 用feof函数,输出时怎么把最后的一个字符重复输出了?

C版

#include <stdio.h>
#include <errno.h>
#include <ctype.h>
int main(int argc,char **argv) {
 FILE *input = fopen("in.test.txt","r");
 char c = '\0';
 while (! feof(input)) {
  fscanf(input,"%c",&c);
  printf("%c",tolower(c));
 }
 printf("\b\n");
 return 0;
}
/*
 * in.test.txt: "XXX"
 * OutPut: "xxxx"
*/

C++版

#include <cstdio>
#include <cerrno>
#include <cctype>
using namespace std;
int main(int argc,char **argv) {
 FILE *input = fopen("in.test.txt","r");
 char c = '\0';
 while (! feof(input)) {
  fscanf(input,"%c",&c);
  printf("%c",tolower(c));
 }
 printf("\b\n");
 return 0;
}
/*
 * in.test.txt: "XXX"
 * OutPut: "xxxx"
*/

求助大佬们为什么会最后一个字符输出两次?

  • 写回答

1条回答 默认 最新

  • threenewbee 2020-03-22 21:04
    关注
    #include <cstdio>
    #include <cerrno>
    #include <cctype>
    using namespace std;
    int main(int argc,char **argv) {
     FILE *input = fopen("c:\\in.test.txt","r");
     char c = '\0';
     while (1) {
      if (fscanf(input,"%c",&c) == EOF) break;
      printf("%c",tolower(c));
     }
     printf("\b\n");
     return 0;
    }
    

    scanf失败,c还是之前的值,所以多输出1个字符。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?