摘要: #include<stdio.h> int main(){ FILE *fp; int sum=0; char ch; fp=fopen("data4.txt","r"); if(fp==NULL){ printf("不能打开文件\n"); return 1; } ch=fgetc(fp); whi 阅读全文
posted @ 2024-06-22 19:44 刘梦佳 阅读(8) 评论(0) 推荐(0) 编辑