自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 第十二周C++实验报告(四)

[cpp] view plaincopy#include  #include  using namespace std;  class Point  {  public:      Point(double x=0,double y=0);               //构造函数      double distance(const P

2012-05-09 23:46:37 688 1

原创 第十二周C++实验报告(三)

[cpp] view plaincopy#include  #include  #include  #include  using namespace std;  enum vehicleStaus {rest,running};  //车辆状态:泊车、行进  class vehicle //车辆类  {  protected:

2012-05-09 23:44:33 1090

原创 第十二周C++实验报告(二)

cpp] view plaincopy#include  #include  using namespace std;  class Teacher  {  public:      Teacher(string nam,int a,char s,string tit,string ad,string t);      void disp

2012-05-09 23:43:01 525

原创 第十周C++实验报告(三)

[cpp] view plaincopy#include  #define pi 3.1415  using namespace std;  class Point  {  public:      int x;      int y;  //public:      Point (int xx = 0, int yy = 0):

2012-05-09 23:41:15 661

原创 第十周C++实验报告(二)

[cpp] view plaincopy#include   #include   #include //setw:设置输出数据的宽度,使用时应#include    using namespace std;    class CPerson   {  protected:      char *m_szName;      ch

2012-05-09 23:39:49 666

原创 第十周C++实验报告(一)

#include    #include    using namespace std;    class Point //定义坐标点类    {    public:        double x,y;   //点的横坐标和纵坐标        Point(){x=0;y=0;}        Point(double x0,double y0) {x=x0;

2012-05-09 23:38:05 646

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除