使用C++实现文件的写操作_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > 使用C++实现文件的写操作

使用C++实现文件的写操作

 2011/11/21 7:56:10  shenjichao2009  http://shenjichao2009.iteye.com  我要评论(0)
  • 摘要://File.cpp:定义控制台应用程序的入口点。//#include"stdafx.h"#include<iostream>#include<fstream>usingnamespacestd;/***功能:将26个数字和字母写入到磁盘文件中*@author超仔**/voidmain(){ofstreamin;//主要用来写文件in.open("D:\\disk\\file.txt",ios::trunc);//ios::trunc表示在打开文件前将文件清空
  • 标签:实现 使用 文件 c++ 操作

// File.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <fstream>
using namespace std;

/**
*功能:将26个数字和字母写入到磁盘文件中
*@author 超仔
**/

void main()
{
ofstream in;//主要用来写文件
in.open("D:\\disk\\file.txt",ios::trunc);//ios::trunc表示在打开文件前将文件清空,当文件不存在时则创建

int i;
char str = 'a';

for(i=1;i<27;i++)
{
if(i<10)
{
in<<"0"<<i<<"\t"<<str<<"\n";//其中\t表示一个Tab键,\n表示一个换行符
str++;
}
else
{
in<<i<<"\t"<<str<<"\n";
str++;
}
}

in.close();//关闭文件
}

  • File.rar (708.8 KB)
  • 下载次数: 0
发表评论
用户名: 匿名