代码搜索:尺寸计算

找到约 10,000 项符合「尺寸计算」的源代码

代码结果 10,000
www.eeworm.com/read/312803/13604193

plg 十数计算.plg

Build Log --------------------Configuration: 十数计算 - Win32 Debug-------------------- Command Lines Creating command line "rc.exe /l 0x804 /fo"De
www.eeworm.com/read/312803/13604194

h 十数计算.h

// 十数计算.h : main header file for the 十数计算 application // #if !defined(AFX__H__D77B41FE_0210_4948_9AE7_4A3E66536388__INCLUDED_) #define AFX__H__D77B41FE_0210_4948_9AE7_4A3E66536388__INCLUDED_ #
www.eeworm.com/read/312803/13604198

cpp 十数计算.cpp

// 十数计算.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "十数计算.h" #include "十数计算Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static cha
www.eeworm.com/read/311986/13620532

vbw 半方差计算.vbw

Form1 = 141, 131, 688, 592, , 43, 39, 724, 625, C
www.eeworm.com/read/311986/13620534

frm 半方差计算.frm

VERSION 5.00 Begin VB.Form Form1 Caption = "`" ClientHeight = 7905 ClientLeft = 60 ClientTop = 345 ClientWidth = 9900 LinkTopic =
www.eeworm.com/read/311986/13620535

vbp 半方差计算.vbp

Type=Exe Form=半方差计算.frm Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\system32\stdole2.tlb#OLE Automation IconForm="Form1" Startup="Form1" Command32="" Name="工程1" HelpCon
www.eeworm.com/read/311771/13626492

c 计算器.c

#include main() { float a,b,s; char c; printf("Please enter a(+,-,*,/)b\n "); scanf("%f%c%f",&a,&c,&b); switch(c) { case '+':s=a+b;break; case '-':s=a-b;break; ca
www.eeworm.com/read/305299/13774342

vbw 计算器.vbw

Form1 = 156, 304, 681, 745, C, 114, 63, 635, 540, C
www.eeworm.com/read/305299/13774343

vbp 计算器.vbp

Type=Exe Form=Form1.frm Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\PWINME\SYSTEM\stdole2.tlb#OLE Automation IconForm="Form1" Startup="Form1" Command32="" Name="工程1" Help
www.eeworm.com/read/304390/13795207

m 计算路径长度.m

function pathlong=pathlong(path,TSPMatrix) %计算路径长度 [row,col]=size(path); for i=1:row pathlong(i)=0; for j=1:(col-1) pathlong(i)=pathlong(i)+TSPMatrix(path(i,j),path(i,j+1));