-
高级语言程序设计第十次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15595 学号:102500303 姓名:涂馨睿 (1)编写一个程序 -
实验7
实验任务4 #include <stdio.h> #include <stdlib.h> int main() { FILE *fp; char ch; int line_count = 0; // 统计行数 int char_count = 0; // 统计非空白字符数 // 以只读方式打开文件d -
实验7
实验任务4 #include <stdio.h> #include <stdlib.h> int main() { FILE *fp; char ch; int line_count = 0; // 统计行数 int char_count = 0; // 统计非空白字符数 // 以只读方式打开文件d -
实验7
任务4 1 #include <stdio.h> 2 3 int isWhiteSpace(char c) { 4 5 return (c == ' ' || c == '\t' || c == '\r' || c == '\n'); 6 } 7 8 int main() { 9 FILE *fil -
实验七
任务4 #include <stdio.h>#include <ctype.h> int main() { FILE *fp; char ch; int line_count = 0; int char_count = 0; fp = fopen("data4.txt", "r"); if (fp