代码搜索:自举升压结构

找到约 10,000 项符合「自举升压结构」的源代码

代码结果 10,000
www.eeworm.com/read/142069/12966948

cpp hotelmuanul.cpp

#include #include #include #include #include #include #define N 500 #define TRUE 1 #define FALSE 0 /*定义顾客结构体*/ typedef
www.eeworm.com/read/141803/12983860

h floppy.h

#include #include //包含了DISK_GEOMETRY等的定义 #include #include //Disk是结构体指针 typedef struct disk{ HANDLE floppyDisk; DISK_GEOMETRY theSupportedGeomet
www.eeworm.com/read/326187/13158825

c 例4-4.c

/* 直到型循环结构示例 */ #include void main() { char ch; char buf[256]; char *p; printf("Input a string.\n"); // 读取字符串 scanf("%s", buf); p = buf; do { ch = *p; //
www.eeworm.com/read/138627/13227701

h tcpexample.h

/* tcpExample.h - header used by both TCP server and client examples */ /*定义结构体,保存待传输的信息,是否回应,以及信息长度*/ #define SERVER_PORT_NUM 7901 /* server's port number for bind() */ #define SERVER
www.eeworm.com/read/138003/13274228

h cscript.h

#pragma once //脚本文件解释器 //变量结构 struct stVariable{ string Name; //名称 string Value; //当前值 }; class CScript { char Name[64]; vector VARA; bool ScrIsFill; //脚本运行时是否使用黑屏 str
www.eeworm.com/read/137140/13343743

java app5_1.java

// app5_1,选择性结构 public class app5_1 { public static void main(String args[]) { int a=6,b=5; System.out.println("a="+a+",b="+b); if (a>b) System.out.pri
www.eeworm.com/read/321248/13410180

java arrayapp.java

package Array; import java.io.IOException; import MyLib.App; //这是用于演示有序数组数据结构的 public class ArrayApp{ public static void main(String[] args) throws IOException{ OrdArray arr=new O
www.eeworm.com/read/316275/13526468

c op-2.c

#include #include #include #define NNN 8 #define Nketa 3 /* 存放图像信息的结构 */ struct PictureInfo { long left,top; long width; long height; WORD x_densit
www.eeworm.com/read/315999/13532642

h c3-2.h

// c3-2.h 单链队列-队列的链式存储结构。在教科书第61页 typedef struct QNode { QElemType data; QNode *next; }*QueuePtr; struct LinkQueue { QueuePtr front,rear; // 队头、队尾指针 };
www.eeworm.com/read/314907/13555997

cpp 机房上机管理系统.cpp

//接口函数声明 #include #include #include #include #include //函数声明 void Zmemu(void); int zhmemu(void); //定义结构体 struct student {