实验5 类和对象3

四、实验结论

  1. 实验内容1
  • vector3.cpp 完整程序
#include <iostream>
#include <vector>
#include <string>
using namespace std;

// 函数声明
void output1(vector<string> &);
void output2(vector<string> &);  

int main()
{
    vector<string>likes, dislikes; // 创建vector<string>对象likes和dislikes

    // 为vector<string>数组对象likes添加元素值 ( favorite book, music, film, paintings,anime,sport,sportsman,etc)
    // 补足代码
    // 。。。
    likes.push_back("<<骆驼祥子>>");
    likes.push_back("安和桥") ;
        likes.push_back("One day");
        likes.push_back("《星空》");
        likes.push_back("rabit");
        likes.push_back("swimming");
        likes.push_back("none"); 

    cout << "-----I like these-----" << endl;
    // 调用子函数输出vector<string>数组对象likes的元素值
    // 补足代码
    // 。。。
    output1(likes);

    // 为vector<string>数组对象dislikes添加元素值
    // 补足代码
    // 。。。
    dislikes.push_back("<<一个人的朝圣>>");
    dislikes.push_back("忐忑") ;
        dislikes.push_back("变形金刚");
        dislikes.push_back("none");
        dislikes.push_back("ant");
        dislikes.push_back("running");
        dislikes.push_back("none"); 

    cout << "-----I dislike these-----" << endl;
    // 调用子函数输出vector<string>数组对象dislikes的元素值
    // 补足代码
    // 。。。
    output1(dislikes);

    // 交换vector<string>对象likes和dislikes的元素值
    // 补足代码
    // 。。。
    swap(likes,dislikes);

    cout << "-----I likes these-----" << endl;
    // 调用子函数输出vector<string>数组对象likes的元素值
    // 补足代码
    // 。。。
    output1(likes);

    cout << "-----I dislikes these-----" << endl;
    // 调用子函数输出vector<string>数组对象dislikes的元素值
    // 补足代码
    // 。。。
    output1(dislikes);  

    return 0;
}

// 函数实现
// 以下标方式输出vector<string>数组对象v的元素值
void output1(vector<string> &v) {
    // 补足程序
    // 。。。
    for(int i=0; i<v.size(); ++i)
    cout<< v[i] <<endl;
}

// 函数实现
// 以迭代器方式输出vector<string>数组对象v的元素值
void output2(vector<string> &v) {
    // 补足程序
    // 。。。
}
  • dev c++下运行截图

实验内容2:

(1)习题 6-17

#include<iostream>
using namespace std;
int main()
{
int *p;
*p=9;
//将*p=9改成p=new int(9)
cout<<"The value at p:"<<*p;
//加上delete p;
return 0;
}

(2)习题 6-18

#include<iostream>
using namespace std;
int fn1(){
int *p=new int(5);
return *p;
//应在此处加上 delete p;
}
int main()
{
int a=fn1();
cout<<"the value of a is:"<<a;
return 0;
}

原文地址:https://www.cnblogs.com/jiahewang/p/9080430.html

时间: 2024-10-07 02:00:27

实验5 类和对象3的相关文章

JAVA实验4 类与对象(封装继承多态等机制的使用)

实验四 类与对象(封装.继承.多态等机制的使用) 实验内容: 1. 编写一个名为TwoDimensionalShape的抽象类,拥有属性area和circumference表示面积和周长,以及抽象方法getArea()和getCircumference(),用于获取面积和周长. 2. 编写Printable接口,包括一个抽象方法printShapeInfo,用于输出图形信息. 3. 分别编写Rectangle.Triangle.Circular三个类,用于描述矩形.三角形和圆形,要求继承于Two

JAVA实验3 类与对象

实验要求: 掌握类与对象的基本思想 能够熟练地使用Java设计并编写类 能够灵活运用各种对象 实验内容: 希腊神话中,宙斯战胜了泰坦之后成为众神之王,以此为背景,通过构造相应对象.属性和方法,并用随机的方式,模拟宙斯与泰坦的战斗过程. 构建类Titan,要求如下: 整形字段HP,以及相应的getter和setter 空参数列表构造方法Titan(),创造出的HP默认为700 带参数构造方法Titan(int HP),创造出指定HP的对象 方法attack(Zues z),参数为宙斯对象,每次调用

实验三 类与对象(zxt)

//以下为课上的实现虚数相加的内容,以及我的疑惑(懵逼) 这个代码存在问题,只能运行整数不能运行浮点数,以下为2.0版本 这回的又有一些问题,这个源代码是老师ppt上的,main函数中的部分是我写的.但是由于我想既能进行整数和浮点数的加法,所以我设置为了double类型.由此导致我只能调用double add( ),int add( )完全没用,如果不把m,n,p,q都设置为double类型,比如:把m,p设置为整型值,说明你已经知道m,p为整型值,这样的话输入的范围就有了限制,我又不想这样,是

实验 4 类和对象-2

四.实验 Graph 1.类Graph的声明 #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol; int size; }; 2.类Graph的实现 #include "graph.h" #include <iostream> using

实验4 类与对象2

实验结论 1.实验内容2 (2)文件源码 graph.h #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol; int size; }; #endif graph.cpp // 类graph的实现 #include "graph.h" #include

实验3 类和对象

实验结论 4-11 定义并实现一个矩形类,有长,宽两个属性,由成员函数计算矩形的面积. #include <iostream> using namespace std; class rectangle{ public: rectangle(float length, float wide); float area(); private: float l, w; }; rectangle::rectangle(float length, float wide){ l=length; w=wide

实验五 类和对象-3 zxt

实验一:运行ex1.cpp 实验二:ex2.cpp   实验三:补全ex3.cpp并运行 我以为是自己喜欢和不喜欢的呢...... 实验四:习题6-17 实验五:习题6-18 实验六:matrix类 我智障的没看见matrix.h,自己写的matrix,我都要写傻了,还运行不出来......求解决 实验七:期中考试第一题 写完突然意识到,忘了释放,要不然会造成内存泄漏,会有很严重的后果,尴尬 我真是老年人的脑袋,啥都忘...... 修改以后如下: 实验八:期中考试第二题 当密码输入错误时 实验九

【C++ 实验5 类和对象】

1. 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 using namespace std; 5 6 // 函数声明 7 void output1(vector<string> &); 8 void output2(vector<string> &); 9 10 int main() 11 { 12 vector<string>likes

实验3类与对象

4-11 #include<iostream> using namespace std; class Rectangle{ public: Rectangle(float length,float width); private: float l; float w; }; Rectangle::Rectangle(float length,float width){ l=length; w=width; } int main(){ float l; float w; cout<<&