#include <fstream> #include <cstdio> int main () { std::fstream src,dest; src.open ("test.txt"); dest.open ("copy.txt"); std::filebuf* inbuf ...
確定! 回上一頁