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
相關文章
相關標籤/搜索