搜索结果

找到约 110 项符合 default 的查询结果

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 ...
https://www.eeworm.com/dl/633/462690.html
下载: 172
查看: 1053

单片机开发 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
https://www.eeworm.com/dl/648/474290.html
下载: 118
查看: 1039

通讯/手机编程 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.
https://www.eeworm.com/dl/527/482877.html
下载: 25
查看: 1048

电子书籍 说明: column_list列出要添加数据的列名。在给表或视图中部分列添加数据时

说明: column_list列出要添加数据的列名。在给表或视图中部分列添加数据时,必须使用该选项说明这部分列名。 DEFAULT VALUES说明向表中所有列插入其缺省值。对于具有INDENTITY属性或timestamp数据类型的列,系统将自动插入下一个适当值。对于没有设置缺省值的列,根据它们是否允许空值,将插入null或返回一错误信息。 ...
https://www.eeworm.com/dl/cadence/ebook/482990.html
下载: 124
查看: 1022

接口技术 net_tcp.h

/* ********************************************************************************************************* *                                             uC/TCP-IP V2 *       ...
https://www.eeworm.com/dl/508248.html
查看: 56

源码 利用栈的基本操作实现将任意一个十进制整数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 ...
https://www.eeworm.com/dl/513582.html
查看: 40

源码 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]; ...
https://www.eeworm.com/dl/513825.html
查看: 35

软件 简单的计算器

// 学生管理.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]; ...
https://www.eeworm.com/dl/513826.html
查看: 8

源码 成绩查询系统

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520134.html
查看: 56

源码 学生成绩guanli

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520138.html
查看: 52