代码搜索:自举升压结构

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

代码结果 10,000
www.eeworm.com/read/251029/4425072

c example1.c

#include struct flight_details /* 定义航班详细信息结构 */ { int flight_code; char source[20]; char destination[20]; char arrival[10]; char departure[10]; int seat_no; }; void main() {
www.eeworm.com/read/337019/3345213

svn-base agcreatedepttree.java.svn-base

package com.fzet.cois.dividework.agents; /* * 生成部门树形结构代理|agCreateDeptTree * @author yeshq * @version 2007-1-30 */ import lotus.domino.*; import java.util.*; import com.fzet.cois.common.s
www.eeworm.com/read/321449/3536999

h descriptor.h

#include "mytype.h" #include "hiduse.h" #ifndef _descriptor_h_ #define _descriptor_h_ //定义标准的设备描述符结构 typedef struct _DEVICE_DCESCRIPTOR_STRUCT { uint8 blength;
www.eeworm.com/read/313900/3640683

cpp p1-79.cpp

#include //定义结构 struct student { char name[10]; float grade; }; //更改student数据的grade成员,参数形式为引用 void change(student &x,float grade) { x.grade=grade; } //更改stu
www.eeworm.com/read/298408/3866155

java emp.java

//**************************** Begin Emp.java //这个类是存储文件中数据的数据结构的类 import java.util.*; import java.io.*; import basicIO.*; public class Emp { //*** construction public Emp() { init
www.eeworm.com/read/277819/4150541

cpp 4_5.cpp

#include #include // 结构体Student struct Student { int id; //学号 float gpa; //平均分 }; template //类模板:实现对任意类型数据进行存取 class Store { pr
www.eeworm.com/read/268404/4252616

h descriptor.h

/****************************************************************************************************** ** 文 件 名: Descriptor.h ** 描 述: USB驱动程序软件包: PDIUSBD12 设备端驱动程序 USB协议层有关描述符结构体定义及取值 *
www.eeworm.com/read/161778/5549766

txt 2.4.5.txt

structure.variable Man lp_Man //声明一个类型为Man的变量 Lp_Man.FirstName="Dale" //给结构变量赋值 lp_Man.LastName="Carnegie" lp_Man.Salary=3000
www.eeworm.com/read/156960/5608236

cpp p1-79.cpp

#include //定义结构 struct student { char name[10]; float grade; }; //更改student数据的grade成员,参数形式为引用 void change(student &x,float grade) { x.grade=grade; } //更改stu