搜索结果
找到约 110 项符合
default 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (14)
- Java编程 (12)
- 其他 (9)
- 技术资料 (7)
- 源码 (6)
- 微处理器开发 (5)
- 书籍源码 (4)
- 编译器/解释器 (4)
- 其他嵌入式/单片机内容 (4)
- matlab例程 (3)
- 单片机编程 (2)
- 通信网络 (2)
- Internet/网络编程 (2)
- 人工智能/神经网络 (2)
- 通讯/手机编程 (2)
- 文章/文档 (2)
- DSP编程 (2)
- 企业管理 (2)
- 教程资料 (1)
- 技术管理 (1)
- Applet (1)
- J2ME (1)
- SQL Server (1)
- 中间件编程 (1)
- 软件设计/软件工程 (1)
- 嵌入式Linux (1)
- 家庭/个人应用 (1)
- 软件工程 (1)
- 网络 (1)
- Delphi控件源码 (1)
- 其他书籍 (1)
- 数据库系统 (1)
- Windows CE (1)
- STL (1)
- 金融证券系统 (1)
- MacOS编程 (1)
- 数值算法/人工智能 (1)
- JavaScript (1)
- VHDL/FPGA/Verilog (1)
- GPS编程 (1)
- 电子书籍 (1)
- 接口技术 (1)
- 软件 (1)
- 笔记 (1)
Java编程 Besides enhanced looks and advanced features, one of the best things about Swing is its pluggable lo
Besides enhanced looks and advanced features, one of the best things about Swing is its pluggable look and feel (PLAF). PLAF architecture allows seamless changes in the appearance of an application and the way an application interacts with the user. However, designing and developing a PLAF is much m ...
单片机开发 This modified version of polar can plot with Settable Properties which is much much more versitile t
This modified version of polar can plot with Settable Properties which is much much more versitile than the default polar
通讯/手机编程 X-MAC, a low power MAC protocol for wireless sensor networks (WSNs). Standard MAC protocols develo
X-MAC, a low power MAC
protocol for wireless sensor networks (WSNs). Standard
MAC protocols developed for duty-cycled WSNs such as
BMAC, which is the default MAC protocol for TinyOS, employ
an extended preamble and preamble sampling.
电子书籍 说明: column_list列出要添加数据的列名。在给表或视图中部分列添加数据时
说明:
column_list列出要添加数据的列名。在给表或视图中部分列添加数据时,必须使用该选项说明这部分列名。
DEFAULT VALUES说明向表中所有列插入其缺省值。对于具有INDENTITY属性或timestamp数据类型的列,系统将自动插入下一个适当值。对于没有设置缺省值的列,根据它们是否允许空值,将插入null或返回一错误信息。 ...
接口技术 net_tcp.h
/*
*********************************************************************************************************
*                                             uC/TCP-IP V2
*       ...
源码 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。
#include <stdlib.h>
#include<stdio.h>
#include <malloc.h>
#define stack_init_size 100
#define stackincrement 10
typedef struct sqstack
{
int *base;
int *top;
int stacksize;
} sqstack;
int StackInit(sqstack *s)
{
s->base=(int *)malloc(stack_init_size *sizeof(int));
if(!s->base)
return 0;
s->top=s->ba ...
源码 c#简单计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
软件 简单的计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 学生成绩guanli
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...