当前位置: 编程技术>c/c++/嵌入式
C++中简单读写文本文件的实现方法
来源: 互联网 发布时间:2014-10-16
本文导语: 代码如下所示: 代码如下:#include "stdafx.h"#include #include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ //写入文件 ofstream ofs; //提供写文件的功能 ofs.open("d:\com.txt",ios::trunc); //trunc打开文件时,清空已存在的文件流,若不存在此...
代码如下所示:
#include "stdafx.h"
#include
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
//写入文件
ofstream ofs; //提供写文件的功能
ofs.open("d:\com.txt",ios::trunc); //trunc打开文件时,清空已存在的文件流,若不存在此文件则先创建
int i;
char a = 'a';
for(i = 1; i != 27; ++i)
{
if(i < 10)
{
ofs
代码如下:
#include "stdafx.h"
#include
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
//写入文件
ofstream ofs; //提供写文件的功能
ofs.open("d:\com.txt",ios::trunc); //trunc打开文件时,清空已存在的文件流,若不存在此文件则先创建
int i;
char a = 'a';
for(i = 1; i != 27; ++i)
{
if(i < 10)
{
ofs