面向对象实验四(输入输出流)

一、实验目的
1、掌握用户自定义类型的输入输出。
2、掌握文件的输入、输出。


二、实验内容

1、定义一个复数类,并为其重载>>和<<运算符,使得复数对象可以整体输入输出,并给出main()对该类进行应用。

#include

using namespace std;

//复数类
class complex
{
private:
    float real;
    float imag;
public:
    friend istream &operator>>(istream &in,class complex &temple);//重载输入运算符
    friend ostream &operator<<(ostream &out,class complex &temple);//重载输出运算符
};
int main()
{
    int i;
    complex obj;
    for(i=0;i<4;i++)
    {
        cout<<"请输入复数的实部和虚部:";
        cin>>obj;
        cout<>(istream &in,class complex &temple)
{
    in>>temple.real;
    in>>temple.imag;
    return in;
}

//重载输出运算符
ostream &operator<<(ostream &out,complex &temple)
{
    out<0)
    {
        out<<'+';
    }
    out<

2、定义空间中的点类(有x,y,z坐标),并重载其>>和<<运算符。编写主函数完成从键盘上读入10个点的坐标,写入数据文件(point.data)中,从数据文件(point.data)中读入并显示在标准输出设备上。

#include
#include
#define MAX 10

using namespace std;

//点类
class point
{
public:
    float x;
    float y;
    float z;
    friend istream& operator>>(istream& in,point &temple);//重载输入运算符
    friend ostream& operator<<(ostream& out,point &temple);//重载输出运算符
};

int main()
{
    int i;
    point obj[MAX];
    cout<<"请输入10个点的坐标:"<>obj[i];
    }
    ofstream out("point.data");//打开输出文件流
    if(out)//如果打开成功
    {
        for(i=0;i>obj[i].x>>obj[i].y>>obj[i].z;
            cout<<'('<>(istream& in,point &temple)
{
    in>>temple.x>>temple.y>>temple.z;
    return in;
}

//重载输出运算符
ostream& operator<<(ostream& out,point &temple)
{
    out<


你可能感兴趣的:(编程语言)