摘要: 实验四 #include <stdio.h> int main() { FILE* fp; fp = fopen("data4.txt", "r"); if (fp == NULL) { return -1; } char t; int line_count = 0, char_count = 0; 阅读全文
posted @ 2024-12-29 21:02 zjcblogs 阅读(13) 评论(0) 推荐(0)