代码搜索结果

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

4-4.c

#include "stdio.h" #define StackSize 100 //假定预分配的栈空间最多为100个元素 typedef int DataType;//假定栈元素的数据类型为字符 typedef struct{ DataType data[StackSize]; int top; }SeqStack; // 置栈空 voi

4-4.txt

/* 范例:4-4 */ #include void main() { int a=5; char *str = "abcd"; /* -,+,blank => 数值type */ printf("Flags = -,+,blank ........数值类型\n"); printf("#%+4d#(%%+4d)\n",10);

4_4.cpp

#include #include class Point //Point类定义 { public: Point(int xx=0, int yy=0) {X=xx;Y=yy;} Point(Point &p); int GetX() {return X;} int GetY() {return Y;} private: i

4-4.txt

/* 范例:4-4 */ #include void main() { int a=5; char *str = "abcd"; /* -,+,blank => 数值type */ printf("Flags = -,+,blank ........数值类型\n"); printf("#%+4d#(%%+4d)\n",10);

4-4.cpp

//矩阵的基本操作 包含矩阵的创建,拷贝,矩阵相乘,访问矩阵元素,矩阵删除等。 // /* #include #include #include void main( ) { CvMat* mat_01, * mat_02, * mat_03; //声明三个矩阵指针 mat_0