c++读取文件内容并统计指定字符的个数

#include <iostream> #include <algorithm> using namespace std; int main() { int cnt = 0; FILE *fp=fopen("stdin", "r"); FILE *fout = fopen("stdout", "w"); fseek(fp, 0, SEEK_END); int filesize = ft
相关文章
相关标签/搜索