int main() { ofstream os("test.txt",ios_base::binary); os.write((char *)iarray,4);//向二进制文件中写4字节数据 }2)使用open函数带一个二进制模式标志打开文件,例如 #include<fstream> using namespace std; int iarray[2] = {99,10}; int main() { ofstream ofs; ofs.open("test2.txt"...