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

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

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

相关代码

				// 使用put() 写文件
				#include  
				#include  
				using namespace std; 
				int main() 
				{ 	char *p = "hello world\n"; 
					ofstream ofile("test", ios::out | ios::binary); //以二进制方式打开文件
					if(!ofile) 	{ 	cout 					while(*p) ofile.put(*p++);   //使用put()函数向文件写一个字符串,不发生字符转换
					ofile.close(); 
					return 0; 
				}
							

相关资源