摘要: 实验四 #include<stdio.h> #include<stdlib.h> int SizeLength(FILE* ptr) { char ch;int cnt=0; while(1){ ch=fgetc(ptr); if(ch==EOF){ break; } if(ch!=' ') cnt 阅读全文
posted @ 2023-12-21 19:21 Mthe 阅读(8) 评论(0) 推荐(0) 编辑