实验内容1:

#include <iostream>
#include <vector>
#include <string>
using namespace std;
string myfavorite[7]={"book", "music", "film", "paintings","anime","sport","sportsman"};
// 函数声明
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("《You Are Not Alone》");
likes.push_back("《辛德勒的名单》");
likes.push_back("《日出》");
likes.push_back("《one piece》");
likes.push_back("乒乓球");
likes.push_back("李娜");
cout << "-----I like these-----" << endl;
// 调用子函数输出vector<string>数组对象likes的元素值
output1(likes);
// 为vector<string>数组对象dislikes添加元素值
dislikes.push_back("恐怖小说");
dislikes.push_back("hip-hop");
dislikes.push_back("烂片");
dislikes.push_back("故弄玄虚");
dislikes.push_back("泡面番");
dislikes.push_back("run");
dislikes.push_back("nobody"); cout << "-----I dislike these-----" << endl;
// 调用子函数输出vector<string>数组对象dislikes的元素值
output2(dislikes);
// 交换vector<string>对象likes和dislikes的元素值
string a;
for(int i=0;i<likes.size();i++)
{
a=likes[i];
likes[i]=dislikes[i];
dislikes[i]=a;
}
cout<<"下面这个功能很鸡肋。。。"<<endl;
cout << "-----I likes these-----" << endl;
// 调用子函数输出vector<string>数组对象likes的元素值
output1(likes);
cout << "-----I dislikes these-----" << endl;
// 调用子函数输出vector<string>数组对象dislikes的元素值
output2(dislikes);
return 0;
}
// 函数实现
// 以下标方式输出vector<string>数组对象v的元素值
void output1(vector<string> &v)
{
for(int i=0;i<v.size();i++)
{
cout<<myfavorite[i]<<":"<<v[i]<<" "<<endl;
}
} // 函数实现
// 以迭代器方式输出vector<string>数组对象v的元素值
void output2(vector<string> &v)
{
int a=0;
for(auto i=v.begin();i<v.end();i++)
{
cout<<myfavorite[a++]<<":"<<*i<<" "<<endl;
}
}

实验内容2:

6-17:

#include<iostream>
using namespace std;
int main()
{
int *p;
//*p=9;//不能直接将数字赋予指针,因为这时编译器并没有分配内存给数字
int a=9;//此时系统才会分配内存
p=&a;//将存储值的地址赋予指针
cout<<"The value at p: "<<*p;
return 0;
}

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;
}

实验内容3:

main:

#include <iostream>
#include "matrix.h"
using namespace std;
int main()
{
Matrix A(5);
Matrix C(3,4);
float const touch[25]= {1,6,1,1,5,
1,1,6,6,5,
1,1,5,3,5,
1,1,5,3,5,
5,1,1,1,1};
A.setMatrix(touch);
A.printMatrix();
Matrix B(A);
cout<<A.element(3,4)<<endl;
A.element(3,4)=6;
cout<<A.element(3,4)<<endl;
A.setElement(3,4,3);
cout<<A.element(3,4)<<endl;
cout<<A.getLines()<<endl;
cout<<C.getCols()<<endl;
return 0;
}

matrix.h:

#ifndef MATRIX_H
#define MATRIX_H
class Matrix
{
public:
Matrix(int n); // 构造函数,构造一个n*n的矩阵
Matrix(int n, int m); // 构造函数,构造一个n*m的矩阵
Matrix(const Matrix &X); // 复制构造函数,使用已有的矩阵X构造
~Matrix(); //析构函数
void setMatrix(const float *pvalue); // 矩阵赋初值,用pvalue指向的内存块数据为矩阵赋值
void printMatrix() const; // 显示矩阵
inline float &element(int i, int j) //返回矩阵第i行第j列元素的引用
{
float &r=p[(i-1)*cols+j-1];
return r;
}
inline float element(int i, int j) const// 返回矩阵第i行第j列元素的值
{
float r=p[(i-1)*cols+j-1];
return r;
}
void setElement(int i, int j, int value); //设置矩阵第i行第j列元素值为value
inline int getLines() const //返回矩阵行数
{
return lines;
}
inline int getCols() const //返回矩阵列数
{
return cols;
}
private:
int lines; // 矩阵行数
int cols; // 矩阵列数
float *p; // 指向存放矩阵数据的内存块的首地址
};
#endif

matrix.cpp:

#include<iostream>
#include "matrix.h"
using namespace std;
Matrix::Matrix(int n):lines(n),cols(n)
{
p=new float[lines*cols];
}
Matrix::Matrix(int n, int m):lines(n),cols(m)
{
p=new float[lines*cols];
}
Matrix::Matrix(const Matrix &X):lines(X.lines),cols(X.cols),p(X.p){}
Matrix::~Matrix()
{
delete p;
}
void Matrix::setMatrix(const float *pvalue)
{
for(int i=0;i<lines;i++)
{
for(int j=0;j<cols;j++)
p[i*cols+j]=pvalue[i*cols+j];
}
}
void Matrix::printMatrix()const
{
for(int i=0;i<lines;i++)
{
for(int j=0;j<cols;j++)
cout<<p[i*cols+j]<<" ";
cout<<endl;
}
}
void Matrix::setElement(int i,int j,int value)
{
p[(i-1)*cols+j-1]=value*1.0;
}

实验内容4:

第二题,User类:

main:

#include <iostream>
#include "User.h"
using namespace std;
int main()
{
User A("BuluGuy");
User B("alien");
A.priUserinf();
A.chgpas("216541");
A.priUserinf();
User kll;
A.priCurrentID();
kll.chgname("kll");
kll.chgpas("135113513");
A.priCurrentID();
B.chgname();
B.chgpas();
B.priUserinf();
B.priCurrentID();
return 0;
}

User.h:

#ifndef USER_H_INCLUDED
#define USER_H_INCLUDED
#include <string>
#include <vector>
#include <cstring>
#include <iostream>
using namespace std;
class User
{
public:
User(string a);
User();
~User();
void priUserinf();
void chgpas();
void chgpas(string);
void chgname(string );
void chgname();
void priCurrentID();
static int CurrentID;
static string Curment[2];
private:
int id;
string name;
string password;
}; #endif // USER_H_INCLUDED

User.cpp:

#include "User.h"
using namespace std;
//递归的判断条件
bool base1=0;
int tine=0;
//类变量的共有属性,使用静态变量
int User::CurrentID=999;
//使用静态变量组记录最后用户的信息
string User::Curment[2]={"User","111111"};
//构造函数
User::User(string a):id(++CurrentID),name(a),password("111111")
{
Curment[0]=name;
Curment[1]=password;
}
User::User():id(++CurrentID),name("User"),password("111111")
{
Curment[0]=name;
Curment[1]=password;
}
User::~User(){}
//用户信息输出
void User::priUserinf()
{
cout<<endl<<"User's ID : "<<id<<endl
<<"User's name : "<<name<<endl
<<"User's password : "<<password<<endl;
}
/*--------------------------------------------*/
//识别密码
string getpass()
{
string m;
cin>>m;
return m;
}
/*--------------------------------------------*/
void User::chgpas()
{
//根据是否递归决定输出语句
if(base1==0)
cout<<"Please input current password : ";
else
cout<<"Password wrong! Please input again : ";
//旧密码匹配成功
if(getpass()==password)
{
do
{
cout<<"Please input new password :";
string cx;
cin>>cx;
cout<<"please input new password again :";
if(getpass()==cx)
{
password=cx;
if(id==CurrentID)Curment[1]=password;
cout<<"Password has changed!"<<endl;
break;
}
else
{
cout<<"Passwords are different! Please try again."<<endl;
}
}while(1);
}
//旧密码匹配失败
else
{
tine++;
if(tine==3)
{
tine=0;
cout<<"Password has been input wrong three times, Please try again later."<<endl;
}
else
{
base1=1;
chgpas();
}
}
}
//程序修改密码
void User::chgpas(string a)
{
password=a;
if(id==CurrentID)Curment[1]=password;
}
//程序修改用户名
void User::chgname(string a)
{
name=a;
if(id==CurrentID)Curment[0]=name;
}
//用户修改用户名
void User::chgname()
{
cout<<"Please input new user's name : "<<endl;
string a;
cin>>a;
name=a;
if(id==CurrentID)Curment[0]=name;
cout<<"User's name has been changed."<<endl;
}
//打印CurrentID并输出最后一位新增用户的信息
void User::priCurrentID()
{
cout<<endl;
cout<<"CurrentID : "<<CurrentID<<endl;
cout<<"The information of last added user :"<<endl;
cout<<endl<<"User's ID : "<<CurrentID<<endl
<<"User's name : "<<Curment[0]<<endl
<<"User's password : "<<Curment[1]<<endl; }



Book类:

main.cpp:

#include <iostream>
#include<vector>
#include"Book.h"
using namespace std; int main()
{
vector<Book> books;
string cx,cv;
float pl;
while(cin>>cx>>cv>>pl)
{
Book a(cx,cv,pl);
books.push_back(a);
}
for(int i=0;i<books.size();i++)
{
books[i].print();
}
return 0;
}

Book.h:

#ifndef BOOK_H_INCLUDED
#define BOOK_H_INCLUDED
#include<iostream>
#include<string>
#include<cstring>
using namespace std;
class Book
{
public:
Book(string a,string c,float v);
void print();
private:
string isbn;
string title;
double price;
}; #endif // BOOK_H_INCLUDED

Book.cpp:

#include "Book.h"
Book::Book(string a,string b,float c):isbn(a),title(b),price(c){}
void Book::print()
{
cout<<"出版编号:"<<isbn<<" "<<"书名:"<<title<<" "<<"定价:"<<price<<" RMB"<<endl;
}

实验5&期中考试后两题的更多相关文章

  1. 西安交通大学c++[mooc]课后题12章(只有后两题)

    不是从第一题开始的,因为我刚准备把代码粘到CSDN上面,可以给自己看,也有可能启发后来者. 机会是留给有准备的人的      --路易斯·巴斯德 先写下第12周慕课学习总结吧! 多态就是将运算符重载, ...

  2. 皓远的第二次博客作业(最新pta集,链表练习及期中考试总结)

    前言: 知识点运用:正则表达式,有关图形设计计算的表达式和算法,链表的相关知识,Java类的基础运用,继承.容器与多态. 题量:相较于上次作业,这几周在java方面的练习花了更多的精力和时间,所要完成 ...

  3. noip2016 小结(ac两题+学习总结)

    NOIP2016考试小结 DAY 1 T1 题目描述 小南有一套可爱的玩具小人, 它们各有不同的职业. 有一天, 这些玩具小人把小南的眼镜藏了起来. 小南发现玩具小人们围成了一个圈,它们有的面朝圈内, ...

  4. 职业生涯之完成OCM考试后的感想

    背景知识:关于OCM认证,百科是这样描述的: Oracle Certified Master(OCM) 大师认证资质是Oracle认证的最高级别.此认证是对技术.知识和操作技能的最高级别的认可.Ora ...

  5. Confusing Date Format UVALive 7711 给定mm-mm-mm格式的时间。年份(1900-1999)只给了后两位数,问有多少种合法的排列使时间正确。

    /** 题目:Confusing Date Format UVALive 7711 链接:https://vjudge.net/contest/174844#problem/A 题意:给定mm-mm- ...

  6. 清橙A1206.小Z的袜子 && CF 86D(莫队两题)

    清橙A1206.小Z的袜子 && CF 86D(莫队两题) 在网上看了一些别人写的关于莫队算法的介绍,我认为,莫队与其说是一种算法,不如说是一种思想,他通过先分块再排序来优化离线查询问 ...

  7. 退役IV次后做题记录

    退役IV次后做题记录 我啥都不会了.... AGC023 D 如果所有的楼房都在\(S\)同一边可以直接得出答案. 否则考虑最左最右两边的票数,如果左边>=右边,那么最右边会投给左边,因为就算车 ...

  8. 退役III次后做题记录(扯淡)

    退役III次后做题记录(扯淡) CF607E Cross Sum 计算几何屎题 直接二分一下,算出每条线的位置然后算 注意相对位置这个不能先搞出坐标,直接算角度就行了,不然会卡精度/px flag:计 ...

  9. 退役II次后做题记录

    退役II次后做题记录 感觉没啥好更的,咕. atcoder1219 历史研究 回滚莫队. [六省联考2017]组合数问题 我是傻逼 按照组合意义等价于\(nk\)个物品,选的物品\(\mod k\) ...

随机推荐

  1. 004-C3P0连接池工具类模板

    package ${enclosing_package}; import java.sql.Connection; import java.sql.ResultSet; import java.sql ...

  2. 如何使标签a处于不可用状态

    今天做项目的时候突然发现a标签下用disabled无法使它的点击事件失效(貌似ie下可以,没有测试过), 首先说一下项目要求,点击a标签(点击之后以防多次快速点击,这里需要点击后使标签a实现),触发a ...

  3. sql语句将身份证号数字转换成特殊字符

    SELECT Tname , STUFF(Idcard,,,'*********') as Idcard,Completion from demo

  4. golang学习之rpc实例

    rpc(远程过程调用),可以像调用本地程序一样调用远端服务,rpc分为http方式和tcp连接方式,使用http的rpc调用如下: 首先是server端: // rpc_server project ...

  5. 导出maven项目依赖的jar包

    注意使用mvn命令是需要配置好maven的环境变量 一.导出到自定义目录中 在maven项目下创建lib文件夹,输入以下命令: mvn dependency:copy-dependencies -Do ...

  6. 设计模式-单例模式下对多例的思考(案例:Server服务器)

    前述: 在学习单例模式后,对老师课上布置的课后作业,自然要使用单例模式,但是不是一般的单例,要求引起我的兴趣,案例是用服务器. 老师布置的要求是:服务器只有一个,但是使用这个服务器时候可以有多个对象( ...

  7. es6的一些基本语法

    首先说一下什么是es6: ECMAScript 6.0(以下简称 ES6)是 JavaScript 语言的下一代标准; let 和 const 命令 let的基本用法: 上面代码在代码块之中,分别用l ...

  8. Java 文件上传与下载、email

    1. 文件上传与下载 1.1 文件上传 文件上传,要点: 前台: 1. 提交方式:post 2. 表单中有文件上传的表单项: <input type="file" /> ...

  9. 如何删除EF4.0以上的版本

    通过VS2010的Package Manager Console安装的EF版本,会在项目根目录的packages目录中生成一个EntityFramework.4.3.0目录,安装什么版本就是什么版本的 ...

  10. 完整SQL分页存储过程(支持多表联接)

    http://www.cnblogs.com/andiki/archive/2009/03/24/1420289.html Code/********************************* ...