代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/352973/10486340
c 键盘显示.c
#include
sbit a0=P2^0;
sbit a1=P2^1;
sbit a2=P2^2;
sbit a3=P2^3;
sbit a4=P2^4;
sbit a5=P2^5;
sbit a6=P2^6;
sbit a7=P2^7;
unsigned char i,j,k,l,m,n,temp,function,shijian=0;
www.eeworm.com/read/278901/10489110
m myga.m
function [f,x]=myga(num,bounds,N,CP,P)
%[f,x]=ga(num,bounds,fun,N,CP,P)
%[f,x]=myga([],bounds,[],[],[])
%该遗传算法适用于:
% 目标函数为求最大值,且解非负整数解
%bounds 边界约束
%Myfun 为目标函数
%num
www.eeworm.com/read/160819/10495214
cpp digits.cpp
#include
#include
using namespace std;
// illustrates loops, convert a number to a string of English digits
// i.e., 1346 -> one three four six
// Owen Astrachan, 6/8/95
string D
www.eeworm.com/read/160819/10495530
cpp digits2.cpp
#include
using namespace std;
#include "prompt.h"
// prelude to recursion: print English form of each digit
// in an integer: 123 -> "one two three"
void PrintDigit(int num)
// preconditi
www.eeworm.com/read/160819/10496039
cpp digits3.cpp
#include
using namespace std;
#include "prompt.h"
// recursion: print English form of each digit
// in an integer: 123 -> "one two three"
void PrintDigit(int num)
// precondition: 0
www.eeworm.com/read/160819/10496508
cpp numtoeng.cpp
#include
#include
using namespace std;
// converts two digit numbers to English equivalent
// Owen Astrachan, 3/30/99
string DigitToString(int num)
// precondition: 0
www.eeworm.com/read/160808/10498163
cpp fork.cpp
#include
#define M 40
int N;
struct Pro
{
int num,time;
};
int Input(int m,Pro p[M])
{
coutm;
if(m>M)cout
www.eeworm.com/read/424063/10499489
m dexresp.m
function dexresp(fun,ssflag)
%DEXRESP Example response for discrete functions.
%
% DEXRESP('fun')
% Andrew Grace 7-9-90
% Revised 6-21-92
% Copyright (c) 1986-93 by the MathWorks, Inc.
if
www.eeworm.com/read/424063/10499498
m tf2ss.m
function [a,b,c,d] = tf2ss(num, den)
%TF2SS Transfer function to state-space conversion.
% [A,B,C,D] = TF2SS(NUM,DEN) calculates the state-space
% representation:
% .
% x = Ax + Bu
% y = Cx
www.eeworm.com/read/424063/10499782
m exresp.m
function exresp(fun,ssflag)
%EXRESP Example response, used by plotting control routines to give
% an example or their use.
% EXRESP('fun')
% EXRESP('fun',ssflag)
% Andrew Grace 7-9-90