代码搜索:Num

找到约 10,000 项符合「Num」的源代码

代码结果 10,000
www.eeworm.com/read/464158/7168664

cpp bigjiecheng.cpp

//以10进制输出结果,本程序计算1000!用时不到50ms #include #include #include //用于计时 #define MaxNum 10000 //阶乘最大的数(最高位数) //如果要算更大的n!请自行修改此值 void LargeNumberTimes(long *num,lo
www.eeworm.com/read/464109/7169607

m m4comp.m

% MATLAB M-file m4comp.m is for checking preliminary % designs of the pss in Project 4 on % power system stablizer in Chapter 10. % m4comp.m provides the Bode plot of pss transfer function
www.eeworm.com/read/463748/7176077

m ip_07_11.m

% MATLAB script for Illustrative Problem 11, Chapter 7 echo on num=[0.01 1]; den=[1 1.01 1]; [a,b,c,d]=tf2ss(num,den); dt=0.01; u=ones(1,2000); x=zeros(2,2001); for i=1:2000 x(:,i+1)=x(:,i)
www.eeworm.com/read/463654/7177131

c xs.c

#include #include #define max 31*4*5*5 #include struct goods { int p_num; int num; int g_num; } s[max]; struct persons { int num[7];
www.eeworm.com/read/463643/7177314

js jquery.dimensions.js

/* $Id: jquery.dimensions.js 62 2008-01-19 12:37:15Z Bolik@xjgc.com $ */ /* Copyright (c) 2007 Paul Bakaus (paul.bakaus@googlemail.com) and Brandon Aaron (brandon.aaron@gmail.com || http://brandonaar
www.eeworm.com/read/463460/7180360

txt 斐波那契数列.txt

@echo off setlocal enabledelayedexpansion ::::::::::::::::::::::::::Fibonacci Series {s11ss 2007-10-1}:::::::::::::::::::::::::: echo Please input the total numbers: set/p num= for /l %%a in (1,1
www.eeworm.com/read/463459/7180406

bat 把指定文件中的指定位置的数字相加.bat

@echo off :: 把某个目录下所有txt中第三行第四个数字相加 :: code by jm 2006-9-9 CMD@XP set num=0 setlocal enabledelayedexpansion :: 其实用skip=2来跳过头两行的效率更高 for %%i in (*.txt) do ( set file=%%i for /f "tokens=
www.eeworm.com/read/463459/7180419

bat 感情进度条.bat

@echo off :: code by tao0610 2006-12-5 set a=▉&set b=69&set c=%% set space= :start set a=%a%▉ set/a b-=2 set/a num+=3 if
www.eeworm.com/read/463459/7180434

bat 随机获取文件名.bat

@echo off :: 随机获取文件名 :: 效率低下 :: dir 中加入/-c能将数字中的逗号去掉 :: 注意delims=后面有空格 :: code by jm CMD@XP 2006-7-27 if exist list.txt del /q list.txt if exist num.txt del /q num.txt echo 已经列表的曲目编号:>num.
www.eeworm.com/read/463459/7180435

bat 探测空文件夹.bat

@echo off :: 探测空文件夹 :: code by jm 2006-12-4 set num=0 setlocal enabledelayedexpansion for /f "delims=" %%i in ('dir /ad /b /s') do ( for /f %%j in ('dir /a "%%i"') do set /a num+=1 if !