
展开全部
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <iostream> #include <fstream> int main() { std::fstream fin, fout; fin.open( "data1.bin" , std::fstream::in | std::fstream::binary); fout.open( "data2.bin" , std::fstream::out | std::fstream::binary); int num; while (fin.read(( char *)&num, sizeof ( int ))) { fout.write(( char *)&num, sizeof ( int )); } fout.close(); fin.close(); return 0; } |
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询