Loading... # 题目 **一、实验目的:** 1.掌握声明类的方法,类和类的成员的概念以及对象定义的方法。 2.初步掌握用类和对象编制基于对象的程序。 3.学习检查和调试基于对象的程序。 4.掌握构造函数和析构函数的实现方法。 5.掌握对象数组、对象指针和string类的使用方法。 6.掌握静态数据成员和静态成员函数的使用方法。 7.理解友员的概念和掌握友员的使用方法 8.掌握类对象作为成员的方法。 **二、实验内容:** | | | | ------- | ----------------------------------------------------------------------------------- | | |  | 1、有以下程序:  请改写程序,要求: 将数据成员改为私有的; 将输入和输出功能改为由函数实现; 在类体内声明成员函数,在类外定义。 然后编译运行。 2、需要求3个长方柱的体积,请编写一个基于对象的程序。数据成员包括length(长),width(宽),height(高)。要求用成员函数实现以下功能: 由键盘分别输入3个长方体的长、宽、高; 计算长方体的体积; 输出长方体的体积。 编程上机调试并运行。 3、将如下代码改成多文件的程序,要求: 将类定义放在头文件student.h中; 将成员函数定义放在源文件student.cpp中; 将主函数的源文件放在main1.cpp中。 在类中增加一个队数据成员赋初值的成员函数set_value. 上机调试并运行。提示代码:  | | | | ------- | ----------------------------------------------------------------------------------- | | |  | 4、设计类Time(用来处理时、分、秒)和类Data(用来处理年、月、日),然后分别在两个类中声明display函数为其友员函数。在主调函数中调用display函数,display函数分别引用两个类的对象的私有数据,输出年、月、日、时、分、秒。(请注意形参的合理定义) 5、商店销售某一商品,商店每天公布统一的折扣(discount)。同时允许销售人员在销售时灵活掌握售价(price),在此基础上,对一次购买10件以上者,还可以享受2%的优惠,现在已知3个销售员的销售情况如下表: | 销售员号(num) | 销售件数(quantity) | 销货单价(price) | | ----------------- | ---------------------- | ------------------- | | 101 | 5 | 23.5 | | 102 | 12 | 24.56 | | 103 | 100 | 21.5 | 请编程计算当日此商品的总销售款sum以及每件商品的平均售价。要求用静态数据成员和静态成员函数。 提示:将折扣discount,总销售款sum和商品销售总件数n声明为静态数据成员,再定义静态成员函数average(求平均售价)和display(输出结果)。 假定当天商店公布折扣为5%优惠。 三、**实验要求** 1.写出程序,并调试程序,要给出测试数据和实验结果。 2.整理上机步骤,总结经验和体会。 3.完成并提交实验报告。 ## 时间 ```C++ #include <iostream> using namespace std; class Time{ private: int hour; int minute; int sec; public: Time(); void print(); }; Time::Time() { cin>>hour>>minute>>sec; } void Time::print() { cout<<hour<<":"<<minute<<":"<<sec; } int main(){ Time *time=new Time; time->print(); delete time; return 0; } ``` ## 长方体 ```C++ #include <iostream> using namespace std; class Shape{ private: double l; double w; double h; double v; public: double getV() const { return v; } Shape(int l, int w, int h) : l(l), w(w), h(h) { this->v=this->h*this->w*this->l; } Shape() {} }; int main(){ Shape *Arr[3]={NULL}; int i=0; for(auto a:Arr){ cout<<"请输入第"<<++i<<"个长方体的长、宽、高: "<<ends; //ends清空缓冲队列 double l,w,h; cin>>l>>w>>h; a=new Shape(l,w,h); cout<<"这个长方体的体积为: "<<a->getV()<<endl; delete a; } return 0; } ``` ## 学生信息 ```C++ //main.cpp #include "student.cpp" int main() { Student A; int a,c; char b[20]; cin>>a>>b>>c; A.set_value(a,b,c); A.display(); return 0; } ``` ```C++ //student.h class Student{ private: int num; char name[20]; char sex; public: void display(); void set_value(int num,char name[20],char sex); }; ``` ```C++ //student.cpp /******************************************************************************* * * @author: Wu Zonglin * @email: mail@wzl1.top * @date: 2022/4/11 20:14 * @version: 1.0 * @description: ******************************************************************************* */ #include "student.h" #include <iostream> #include <cstring> using namespace std; void Student::display() { cout<<"num:"<<num<<endl; cout<<"name:"<<name<<endl; cout<<"sex:"<<sex<<endl; } void Student::set_value(int num, char *name, char sex) { this->sex=sex; strcpy(this->name,name); this->num=num; } ``` ## Time和Data ```C++ #include <iostream> using namespace std; class Time; class Date; class Time{ private: int hour; int min; int sec; public: friend void display(Date date,Time time); int getHour() const { return hour; } void setHour(int hour) { this->:hour = hour; } int getMin() const { return min; } void setMin(int min) { this->min = min; } int getSec() const { return sec; } void setSec(int sec) { this->sec = sec; } }; class Date{ private: int year; int mouth; int day; public: friend void display(Date date,Time time); int getYear() const { return year; } void setYear(int year) { this->year = year; } int getMouth() const { return mouth; } void setMouth(int mouth) { this->mouth = mouth; } int getDay() const { return day; } void setDay(int day) { this->day = day; } }; void display(Date date,Time time){ cout<<date.getYear()<<"年"<<date.getMouth()<<"月"<<date.getDay()<<"日"; cout<<time.getHour()<<"时"<<time.getMin()<<"分"<<time.getSec()<<endl; } int main() { Time time; Date date; int a,b,c,d,e,f; cin>>a>>b>>c>>d>>e>>f; date.setYear(d); date.setMouth(e); date.setDay(f); time.setHour(a); time.setMin(b); time.setSec(c); return 0; } ``` ## 商店销售 ```C++ #include <iostream> #include <vector> using namespace std; class Sell{ static double sum; static float discount; static int number; static int _length; int quantity; int num; double price; double all_sum=0; public: Sell(){ } Sell(int quantity,double price){ this->num=_length++; this->quantity=quantity; this->price=price; number+=quantity; this->all_sum=price*quantity*discount; if (quantity>=10) all_sum*=0.98; sum+=all_sum; } static double average(){ return sum/number; } static void display(){ cout<<"Sum:"<<sum<<" Average:"<<average(); } }; float Sell::discount=0.95; int Sell::_length=0; double Sell::sum=0; int Sell::number=0; int main() { vector<Sell*> vs; for (int i = 0; i < 3; ++i) { int num,quantity; double price; cin>>num>>quantity>>price; vs.push_back(new Sell(quantity,price)); } Sell::display(); return 0; } ``` 最后修改:2023 年 08 月 05 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏