摘要:
第六题 输出文件中的注释:将C语言源程序(hello.c)文件中的所有注释去掉后存入另一个文件(new_hello.c)。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #define MA 阅读全文
摘要:
第五题 输出含for的行:将文本文件test.txt中所有包含字符串"for"的行输出. #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #define MAXN 5000 int main( 阅读全文
摘要:
第四题 将文件中的数据求和并写入文本文件尾:文件Int_Data.dat中存放了若干整数,将文件中所有数据相加,并把累加和写入该文件的最后。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ int n 阅读全文
摘要:
3.比较两个文本文件是否相等:比较两个文本文件的内容是否相同,并输出两个文件中第一次出现不同字符内容的行号及列值。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ int row, column; c 阅读全文
摘要:
第二题 将实数写入文件:从键盘输入若干实数(以特殊数值-1结束),分别写到一个文本文件中。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ double number; FILE *fp; if (( 阅读全文
摘要:
第一题:统计文本文件中各类字符个数:分别统计一个文本文件中字母、数字及其其它字符的个数。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ int alphabet, digit, other; cha 阅读全文