代码搜索:主电路设计
找到约 10,000 项符合「主电路设计」的源代码
代码结果 10,000
www.eeworm.com/read/205920/15304107
~pas uform_main.~pas
unit Uform_main;
//应用程序主窗口,由其按用户输入调用其他窗口,实现应用程序提供的各项功能
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, Buttons, StdCtrls, DB, A
www.eeworm.com/read/205920/15304119
pas uform_main.pas
unit Uform_main;
//应用程序主窗口,由其按用户输入调用其他窗口,实现应用程序提供的各项功能
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, Buttons, StdCtrls, DB, A
www.eeworm.com/read/6617/92743
cpp usedll.cpp
//UseDll.cpp:显式链接方式调用Dll
#include "iostream.h" //输入输出库
#include "Windows.h"//使用API函数
typedef int (*PFNFactorial)(int); //宏定义FactorialFun函数指针类型
void main() //主函数
{
int n;
www.eeworm.com/read/8474/148229
c ex42.c
//实例42:用定时器T0查询方式P2口8位控制LED闪烁
#include // 包含51单片机寄存器定义的头文件
/**************************************************************
函数功能:主函数
***********************************************
www.eeworm.com/read/10764/189197
java main.java
package us.imnet.iceskysl;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
//主界面(判断是否已经有访问权限,如果没
www.eeworm.com/read/11040/193981
c main10_3.c
/*************************************************************************
文件名: main10_3.c
日期: 2007年2月15日
公司(作者):
描述和说明: main()函数中启动定时器1,主循环中用时域法计算电压有效值
*********************************
www.eeworm.com/read/12173/239757
c ex42.c
//实例42:用定时器T0查询方式P2口8位控制LED闪烁
#include // 包含51单片机寄存器定义的头文件
/**************************************************************
函数功能:主函数
***********************************************
www.eeworm.com/read/14005/291632
c sinx.c
#include /*scanf和printf标准输入输出函数、main主函数,需要stdio.h */
/*include称为文件包含命令, 扩展名为.h的文件也称为头文件或首部文件*/
#include
www.eeworm.com/read/17110/716210
c ex1.c
#include //头文件
void main() //主函数
{
float a,b,c; //浮点型变量
a=1.2; //赋值
b=.27;
c=1.7E-4;
printf("a=%f,b=%f,c=%f\n",a,b,c); //输出结果
printf("%f",2.31);
while(1
www.eeworm.com/read/17110/716252
c ex1.c
#include //头文件
void main() //主函数
{
char ch[]="hello everyone!"; //定义字符串数组
int i,j; //定义整型变量
i=sizeof(ch); //获取字符串数组的长度
j=sizeof(float); //获