代码搜索:zheng

找到约 747 项符合「zheng」的源代码

代码结果 747
www.eeworm.com/read/291765/8397307

c zheng.c

#include #include #include void main() { FILE *in,*out;/*存放输入字符串和输出单词串的文件*/ char arr[1024];/*arr数组存放单词符号*/ int ch; char N;/*currentchar存放
www.eeworm.com/read/390458/8464676

asm zheng.asm

STACK SEGMENT PARA STACK 'STACK' DB 256 DUP(0) STACK ENDS DATA SEGMENT PARA PUBLIC 'DATA' LENGTH1 EQU 8 DATA1 DW 0,0AAAAH,1111H,0BBBBH DW 2222H,0078H,00B7H,0AA78H,0BB90
www.eeworm.com/read/387151/8703461

asm zheng.asm

DATA SEGMENT DATA1 DB 'Please input 10 numbers:$' CHA DB 0 JIGE DB 0 YOU DB 0 STR1 DB '0~59:$' STR2 DB '60~79:$' STR3 DB '80~99:$' DATA ENDS CODE SEGMENT ASSUME CS:CODE,DS:DATA STAR
www.eeworm.com/read/178949/9381666

ico zheng.ico

www.eeworm.com/read/143576/7098673

wav zheng.wav

www.eeworm.com/read/444249/7615610

gif zheng.gif

www.eeworm.com/read/247291/12667656

h zheng.h

#if !defined(AFX_ZHENG_H__22C23170_CFB1_11D4_BD31_C4BB7FD11637__INCLUDED_) #define AFX_ZHENG_H__22C23170_CFB1_11D4_BD31_C4BB7FD11637__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VE
www.eeworm.com/read/247291/12667687

cpp zheng.cpp

// zheng.cpp : implementation file // #include "stdafx.h" #include "celiang.h" #include "zheng.h" #define PI 3.14159265357929 #include #ifdef _DEBUG #define new DEBUG_NEW #undef
www.eeworm.com/read/244930/12831290

h zheng.h

#include typedef int ElemType; struct BTreeNode { ElemType Data; BTreeNode* pLeft; BTreeNode* pRight; }; class BTree { public: enum TraversType{ FIRST_TRAVERS_BTREE = 0,
www.eeworm.com/read/244930/12831298

cpp zheng.cpp

#include "Zheng.h" #include BTree::BTree() { pRoot = NULL; int nArr[] = {1,2,8,6,7,2,0,-1}; int *nTemp = nArr; this->CreatBTree(nTemp,pRoot); } void BTree::CreatBTree(ElemT