代码搜索结果

找到约 10,000 项符合 8 的代码

8-8.txt

Person.prototype.showInfo = function() { if (arguments.length==0){ //如果方法调用不包含参数 return ("嗨!我的名字是"+this.name+",我现在"+this.age+"岁了。"); }else if (arguments.length==1){ //如果方法调用仅包含一个参数 return

8-8.c

#include"dos.h" #include"conio.h" int SetDate() { union REGS inregs,outregs; inregs.h.ah=0x2B; inregs.x.cx=1983; inregs.h.dh=8; inregs.h.dl=14; intdos(&inregs,&outregs); return outreg

8_8.cpp

//8_8 #include #include #include void transpose(int* a, int size); //降维处理 void main() { int A[5][5]; randomize(); for(int i=0; i

8-8.m

I = imread('ngc4024m.tif'); X = grayslice(I,16); imshow(I) figure, imshow(X,jet(16))

8_8.cpp

#include using namespace std; #include class CRect { int length,width; public: CRect(int l,int w) {length=l; width=w; } void disp() { cout

8_8.cpp

//8_8.cpp #include #include using namespace std; class Med {public: virtual void print() =0; virtual string id() =0; protected: string title; }; class Book : Med