C++,读取文件,第一行是文件行数,第二行开始是字符后跟着数字。
怎么读取:2wangyushu1233lihang2345789第一行显示文件行数空格分隔名字读入char*动态数组后面的数字最多会有4个使用一个student的clas...
怎么读取:
2
wang yu shu 12 33
li hang 23 45 7 89
第一行显示文件行数
空格分隔
名字读入char*动态数组
后面的数字最多会有4个
使用一个student的class 展开
2
wang yu shu 12 33
li hang 23 45 7 89
第一行显示文件行数
空格分隔
名字读入char*动态数组
后面的数字最多会有4个
使用一个student的class 展开
2个回答
展开全部
你说的加个student类是什么意思,我就把实现功能放在类中了,不知道是不是你说的意思
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
class student
{
public:
void file();
};
void student::file()
{
ifstream read;
read.open("t.txt");
int num;
read >> num;
read.seekg(2, ios::cur);
cout << "文件行数为:" << num << endl;
char *ch = new char[50];
char c;
int i = 0;
c = read.get();
while (!read.eof())
{
cout << c;
if (c <= 'z' && c >= 'a')
{
ch[i] = c;
}
i++;
c = read.get();
}
read.close();
}
int main()
{
student s;
s.file();
return 0;
}
追问
我的意思是能否建立一个叫student的类,把变量放入class的private里。
还有就是能否用int数组存入数字呢?因为我想计算总分和平均分。
我遇到的问题是怎么把名字和数字分开读呢?
非常感谢。
追答
判断在不在 0 ~ 9 之间就是了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询