自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

BeterJane

但行好事,莫问前程

  • 博客(4)
  • 收藏
  • 关注

原创 Javascript中this的用法

#include #include using namespace std;int main( ){ double salarys[500];//新建工资数组 int n=0; freopen("a.txt","r",stdin); freopen("ordered_salary.txt","w",stdout); while(cin>>salary

2014-06-08 23:18:42 682

原创 关于Javascript中的数组

#include using namespace std;int main( ){ double salarys[500];//新建工资数组 int n=0; while(cin>>salarys[n]) { n++; //从cin流读取数据 } //将n名职工的工资排序后输出 int i,j; double

2014-06-08 23:16:50 982

原创 OJ平台

#include #include using namespace std;#define Pi 3.1415926class Shape{ public: virtual float area()const{return 0;}};class Circle:public Shape{ public: Circle(float r); vir

2014-06-08 23:13:17 1226

原创 形状类族中的纯虚函数

#include using namespace std;class Shape{ public: virtual float area()const=0;};class Circle:public Shape{ public: Circle(float r=0); virtual float area()const; protected

2014-06-08 23:03:37 649

空空如也

空空如也

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

TA关注的人

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