10个比较经典的C++程序。初学者就先多学习学习别人吧。

源代码在线查看: 11_25.cpp

软件大小: 1880 K
上传用户: l550253832
关键词: 比较 初学者 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include  
				#include  
				using namespace std; 
				int main() 
				{ 	int n[5] = {1, 2, 3, 4, 5}; 	register int i; 
					ofstream ofile("test.bin", ios::out | ios::binary); 	//以二进制方式打开文件
					if(!ofile) 	{ 	cout 					ofile.write((char *) &n, sizeof n); //向文件写数据块
					ofile.close(); 
					for(i=0; i					ifstream ifile("test.bin", ios::in | ios::binary); 	//以二进制方式打开文件
					if(!ifile) 	{ 	cout 					ifile.read((char *) &n, sizeof n); 
					for(i=0; i					ifile.close(); 
					return 0; 
				}
							

相关资源