#include<iostream>
using namespace std;
int main()
{
FILE *fp;
//fopen(文件路径,打开方式)
//r只读 w写 a追加方式打开
fp=fopen("data2.txt","r"); //相对位置,也可以绝对位置
if(fp==NULL)
{
cout<<"文件读取失败";
return -1;
}
else
{
cout<<"文件读取成功"<<fp;
}
fclose(fp);
return 0;
}
注意编码形式
多态:
1.父类指针指向子类对象
2.虚函数的重写
3.继承关系
代码:
#include<iostream>
using namespace std;
int ma1in()
{
FILE *fp;
int num=0;
char ch;
//fopen(文件路径,打开方式)
//r只读 w写 a追加方式打开
fp=fopen("astr.txt","r"); //相对位置,也可以绝对位置
if(fp==NULL)
{
cout<<"文件读取失败"<<endl;
return -1;
}
else
{
cout<<"文件读取成功"<<endl;
}
while((ch=fgetc(fp))!=EOF){
if(ch==' '||ch=='\n'){
num++;
}
}
cout<<"字符串个数为:"<<num+1;
fclose(fp);
return 0;
}
代码:
注释的地方没有用流会保存乱码,不知道为啥。.c_str是因为string是c++的,而文件保存是c的东西。
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<iostream>
#include <fstream>
using namespace std;
struct score
{
string name;
int Chinese;
int Math;
int ScoreAll;
};
int main(void)
{
//FILE *fp,*fp1;
//char ch;
//struct score nums[100];
//
//fp=fopen("Student.txt","r"); //相对位置,也可以绝对位置
//if(fp==NULL)
//{
// cout<<"Student文件读取失败"<<endl;
//}
//else
//{
// cout<<"Student文件读取成功"<<endl;
//}
//
//fp1=fopen("Result.txt","w"); //相对位置,也可以绝对位置
//if(fp1==NULL)
//{
// cout<<"Result文件读取失败"<<endl;
//}
//else
//{
// cout<<"Result文件读取成功"<<endl;
//}
//
//int i=0;
//while(fscanf(fp, "%s %d %d", nums[i].name.c_str(), &nums[i].Chinese, &nums[i].Math)!=EOF){
//
// fscanf(fp,"%s %d %d\n",nums[i].name.c_str(),&nums[i].Chinese,&nums[i].Math);
// cout<<nums[i].name.c_str()<<" "<<nums[i].Chinese<<" "<<nums[i].Math<<endl;
// nums[i].ScoreAll=nums[i].Chinese+nums[i].Math;
// fprintf(fp1,"%s %d %d %d\n",nums[i].name.c_str(),nums[i].Chinese,nums[i].Math,nums[i].ScoreAll);
// i++;
//}
// fclose(fp);
// fclose(fp1);
fstream fp("Student.txt",ios::in);
fstream fp1("Result.txt", ios::out);
struct score nums[100];
if (!fp)
{
cout << "Student文件读取失败" << endl;
}
else
{
cout << "Student文件读取成功" << endl;
}
if (!fp1)
{
cout << "Result文件读取失败" << endl;
}
else
{
cout << "Result文件读取成功" << endl;
}
int i = 0;
while (!fp.eof())
{
fp >> nums[i].name >> nums[i].Chinese >> nums[i].Math;
cout << nums[i].name.c_str() << " " << nums[i].Chinese << " " << nums[i].Math << endl;
nums[i].ScoreAll=nums[i].Chinese+nums[i].Math;
fp1 << nums[i].name << " " << nums[i].Chinese << " " << nums[i].Math << " " << nums[i].ScoreAll << endl;
}
fp.close();
fp1.close();
return 0;
}