代码搜索:盒维数
找到约 10,000 项符合「盒维数」的源代码
代码结果 10,000
www.eeworm.com/read/232196/14204664
ini dup_survey.ini
[重复测量Main]
Text0= 重 复 测 量
Text1= 和 值 0°00'00"
Text2= 次 数
Text3= 均 值
Text4= 后 视 读 数
Text22=0
Text23=0°00'00"
Label0=取 消
Label3=OK
www.eeworm.com/read/128713/14280811
asm 16-to-10(2).asm
;两位十六进制数转化为十进制数
DATA SEGMENT
HEX DB 3,0,3 DUP(0H)
DECIMAL DB 4 DUP(0H)
STRING DB 'PLEASE ENTER LIANG WEI HEX NUMBER:','$'
STRING1 DB 0AH,0DH,'THE DECIMAL NUMBER IS:','$'
STRING2
www.eeworm.com/read/125845/14458689
cpp cpp2.cpp
#include "stdio.h"
#include "math.h"
#define N 100000 /*数组中每个元素储存一个五位数 */
#define M 201 /*数组含M个元素,共储存5*M位数*/
void fdiv(long a[],unsigned int z) /*超长整型数a[]除以整数z*/
{int i;
unsigned long temp,
www.eeworm.com/read/125845/14458694
txt 圆周率源程序2.txt
#include "stdio.h"
#include "math.h"
#define N 100000 /*数组中每个元素储存一个五位数 */
#define M 201 /*数组含M个元素,共储存5*M位数*/
void fdiv(long a[],unsigned int z) /*超长整型数a[]除以整数z*/
{int i;
unsigned long temp,
www.eeworm.com/read/225696/14524687
c c04_17.c
/*continue语句的使用*/
#include
int main()
{
int j; /*定义一个整型变量*/
printf("2位数中能同时被3和5整除的数有:\n");
for (j=10; j
www.eeworm.com/read/220692/14791661
m dectobin.m
%**************************************************************************
% 函数功能:十进制转化成二进制
% 输入参数:dec为输入的十进制,l指定转化成的二进制数的长度
% 返回值:转化成的二进制数s和负系数对应的位置编号ind
%***************************************
www.eeworm.com/read/218181/14931975
c dfop.c
#include "stdio.h"
#include "conio.h"
struct filesys_superblk
{ /*文件系统的分区信息,存放在0#物理块中*/
unsigned long fs_size; /*整个分区的总磁盘物理块数 */
unsigned long fs_freesize; /*分区的所有空闲磁盘物理块数 */
unsigned int
www.eeworm.com/read/114100/15112850
txt 如何象ultraedit6.0一样编辑和显示16进制文本.txt
首 先 , 你 可 以 将 十 六 进 制 数 据 转 换 为 字 符 串 , 再 人 为 的 插 入 空 格 , 显 示 在 Richtext中 , 之 后 的 控 制 光 标 和 数 据 替 换 就 要 看 你 的 编 程 功 底 了 。
www.eeworm.com/read/114100/15113136
txt 在vb里怎样识别当前的显示分辩率和颜色.txt
当 前 显 示 分 辨 率 宽 为 Screen.Width / Screen.TwipsPerPixelX, 高 为 Screen.Height / Screen.TwipsPerPixelY。
欲 检 测 颜 色 数 , 需 要 调 用 GetDeviceCaps函 数 。 首 先 , 在 窗 体 的 声 明 部 分 增 加 如 下 内 容 :
Const BITSPI
www.eeworm.com/read/213761/15125979
cpp gauss.cpp
#include
#include
int main()
{
float a[10][10],b[10],d=0,t=0,sum=0;
int k=1,l=0,i=0,j=0,m,n;
cout