vc6.0环境下c程序如何读入txt文档
3个回答
展开全部
在C语言中,文件操作可以用文件指针FILE。
打开文件->读写文件->关闭文件。
代码如下:
//vc6.0环境下c程序如何读入txt文档
#include <stdio.h>
#include <windows.h>
void main()
{
FILE *fin; //定义一个文件指针
char ch;
fin=fopen("1.txt","r"); //用fopen函数打开需要的文件
if(fin == NULL) //打开失败
{
puts("open file failed!");
system("pause");
return ;
}
for(;feof(fin) == 0;) //文件未读取完;feof函数是判断是否到文件尾
{
ch=fgetc(fin); //读取一个字符
putchar(ch); //输出到显示屏
}
putchar('\n');
fclose(fin); //关闭文件
system("pause");
}
打开文件->读写文件->关闭文件。
代码如下:
//vc6.0环境下c程序如何读入txt文档
#include <stdio.h>
#include <windows.h>
void main()
{
FILE *fin; //定义一个文件指针
char ch;
fin=fopen("1.txt","r"); //用fopen函数打开需要的文件
if(fin == NULL) //打开失败
{
puts("open file failed!");
system("pause");
return ;
}
for(;feof(fin) == 0;) //文件未读取完;feof函数是判断是否到文件尾
{
ch=fgetc(fin); //读取一个字符
putchar(ch); //输出到显示屏
}
putchar('\n');
fclose(fin); //关闭文件
system("pause");
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <fstream>
using namespace std;
void main()
{
ofstream outfile("c:\\student.txt");
ifstream infile;
char name[8],id[20];
int math,eng,computer;
for(int i=0;i<3;i++)
{
cout<<"输入姓名: ";
cin>>name;
cout<<"输入身份证号: ";
cin>>id;
cout<<"输入数学成绩: ";
cin>>math;
cout<<"输入英语成绩: ";
cin>>eng;
cout<<"输入计算机成绩: ";
cin>>computer;
outfile<<name<<" "<<id<<" "<<math<<" "<<eng<<" "<<computer<<endl;
}
outfile.close();
infile.open("c:\\student.txt");
//infile>>name;
for(int s=0;s<3;s++)
{
infile>>name>>id>>math>>eng>>computer;
cout<<"输出姓名: "<<name<<endl;
cout<<"输出身份证号: "<<id<<endl;
cout<<"输出数学成绩: "<<math<<endl;
cout<<"输出英语成绩: "<<eng<<endl;
cout<<"输出计算机成绩: "<<computer<<endl;
//infile>>name;
}
infile.close();
}
#include <fstream>
using namespace std;
void main()
{
ofstream outfile("c:\\student.txt");
ifstream infile;
char name[8],id[20];
int math,eng,computer;
for(int i=0;i<3;i++)
{
cout<<"输入姓名: ";
cin>>name;
cout<<"输入身份证号: ";
cin>>id;
cout<<"输入数学成绩: ";
cin>>math;
cout<<"输入英语成绩: ";
cin>>eng;
cout<<"输入计算机成绩: ";
cin>>computer;
outfile<<name<<" "<<id<<" "<<math<<" "<<eng<<" "<<computer<<endl;
}
outfile.close();
infile.open("c:\\student.txt");
//infile>>name;
for(int s=0;s<3;s++)
{
infile>>name>>id>>math>>eng>>computer;
cout<<"输出姓名: "<<name<<endl;
cout<<"输出身份证号: "<<id<<endl;
cout<<"输出数学成绩: "<<math<<endl;
cout<<"输出英语成绩: "<<eng<<endl;
cout<<"输出计算机成绩: "<<computer<<endl;
//infile>>name;
}
infile.close();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个程序很简单哦,可以自己看看文件相关的函数就知道了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询