自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

WYTC

物语添彩

  • 博客(7)
  • 资源 (4)
  • 收藏
  • 关注

原创 修改的p369-13

//第一个文件 13.h#include #include "13.h"void main(){ char strId[30],strName[30]; int intMath,intEnglish,intC; cout cin>>strId; cout cin>>strName; cout cin>>intMath>>intEnglish>>intC; student s

2006-11-20 13:34:00 862

原创 C++ 修改的p369-17题 数组类

#include class CArray{private: int nSizeofInt;     //整型数组的大小 int nNumofInt;  //整型数组中实际存放的元素个数 int nSizeofFloat; //浮点数组的大小 int nNumofFloat; //浮点数组中实际存放的元素个数 int *pInt;   //指向整型数组,动态分配内存空间 double *pFl

2006-11-20 12:15:00 884

原创 C++ 操作数组的类

#include class CArray{private: int nSizeofInt;     //整型数组的大小 int nNumofInt;  //整型数组中实际存放的元素个数 int nSizeofFloat; //浮点数组的大小 int nNumofFloat; //浮点数组中实际存放的元素个数 int *pInt;   //指向整型数组,动态分配内存空间 float *pFlo

2006-11-19 20:26:00 1315

原创 C++ 16 拷贝字符串

#include #include class Csample{ char *p1,*p2;public: Csample() {  p1=new char[20];  p2=new char[20]; } void intit(char *s1,char *s2) {  int k;  k=strlen(s1);  for(int i=0;i  {   p1[i]=s1[i];  }  p1

2006-11-17 18:06:00 551

原创 14 一个求点的类

#include class CPoint{public: CPoint(int intx,int inty) {  x=intx;  y=inty; } void display() {  cout } void setpoint(int intx,int inty) {  x=intx;  y=inty; }private: int x; int y;};void main(){ CP

2006-11-17 18:05:00 578

原创 C++类之 学生基本情况例子

//有两个文件 一个头文件student.h 一个cpp文件student.cpp//student.h #include #include class score  //成绩类{public: score() {  math=0;  english=0;  c=0; } void setmath(int i)  //设置数学成绩 {  math=i; } void setinte

2006-11-07 20:49:00 1134

原创 c++类计算减法

#include class CTest{public: void init(int inta,int intb)  //做减法 {  t=inta-intb; }  void print()    //输出 {  cout }private: int t;};void main(){ CTest c; c.init(200,60); c.print();} 

2006-11-07 19:37:00 1681

apple脚本跟我学

一本学applescript苹果脚本的中文版pdf文件

2010-04-16

Objective-C

iPhone开发的基础教的 objective-C包括(一版,二版) PDF电子版教程

2010-04-12

iPhone开发基础教程[PDF文件]

绝对能用,直接pdf文件,《iPhone开发基础教程》PDF电子版教程文翻译版,下了的顶下啊!给个评价.

2010-04-12

空空如也

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

TA关注的人

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