c和c++完美演绎,里面有编程的方法,对编程技术的提高有很大的帮助

源代码在线查看: 11-7.txt

软件大小: 129 K
上传用户: chayangccc
关键词: 编程 编程技术
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* 范例:11-7 */
				#include 
				void main()
				{
				  ofstream out_file("out.txt"); 	// # 1 if(变更out.txt属性只读,隐藏)
				
				  out_file 				  out_file.put('B').put('o').put('y'); 	// # 2如同cout.put(ch)...
				  cout 				  out_file.close();	// # 3
				
				  ifstream in_file("out.txt");	// # 4  if(变更为不存在文件,out1.txt)
				  cout 				  cout 				  cout 				  in_file.close();	// # 8
				  getchar();
				}
				
				程序执行结果:(依 #1、#4 设定而不同,两者皆成功时,结果如下)
				out_file.is_open()=1
				in_file.is_open()=1
				in_file.fail()=0
				My name is Peipei.
				Boy
				
							

相关资源