自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 实验六

part1#include <iostream>#include <fstream> #include <cstring>#include <cstdlib>using namespace std;int main() { string filename1, filename2, newfile...

2019-06-18 10:09:00 80

转载 实验五

#ifndef PETDOGS_H#define PETDOGS_H#include<string>using namespace std;#include"MachinePets.h"class PetDogs:public MachinePets{public: PetDogs(const string s); string...

2019-06-03 15:44:00 76

转载 c++实验四

#ifndef CAR_H#define CAR_H#include <iostream>#include <string>using namespace std;class Car{public: Car(string maker0,string model0,int year0,int odometer0=0); ...

2019-05-21 12:24:00 130

转载 实验三

#ifndef GRAPH_H#define GRAPH_Hclass Graph { public: Graph(char ch, int n); void draw(); private: char symbol; int size;};#end...

2019-04-23 21:48:00 84

转载 课堂练习

#include<iostream>#include<cmath>using namespace std;class Complex{ public: Complex(double A=0,double B=0) ; Complex(Complex &c2); void add(Complex c2)...

2019-04-02 21:41:00 115

转载 c++实验二

1#include<iostream>using namespace std;struct Complex {double x;double y;};int add(int, int);double add(double,double);Complex add(Complex, Complex);int main() {Complex x={1,2};Complex...

2019-03-26 21:17:00 205

转载 c++实验一

2-28(1)#include <iostream>using namespace std; int main(){char a; while(1) {cout<<"Menu:A(dd) D(elete) S(ort) Q(uit),Select one:"; cin>>a; if(a=='A') {cout<<"数据已经增加."...

2019-03-19 21:19:00 66

空空如也

空空如也

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

TA关注的人

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