代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/450798/7476719
c 递归车厢.c
/**********递归题改为非递归题实例 车厢********/
#include
#define MAX 4
int stack[MAX],p=-1;
struct
{
int num;
int sign;
}train[MAX];
void sub()
{
int inc;
if(p==MAX-
www.eeworm.com/read/450709/7477688
txt output.txt
token序列(每个token形式为二元组):
id ( ) { int id ; int id ; int id ; id = num ; id = num ; id = num ; while ( id relop id ) { id = id addop id ; id = id addop num ; id = id +( id addop num )/ id addop num ; i
www.eeworm.com/read/450639/7479621
c filter.c
#include
#include
#include "lpcdefs.h"
#include "filter.h"
/* -------------------------------- FILTER_CREATE --------------------------------
*/
FILTER *filter_crea
www.eeworm.com/read/450457/7483859
cpp third.cpp
#include
int xuanzhe();
void shezhimin();
void shezhinum();
void shezhimax();
void shezhimi();
void free();
int backmoney();
void printVM();
float endmoney();
int testgood();
www.eeworm.com/read/450363/7485136
c 雅可比迭代.c
#include
#include
void main()
{
float a[11][12],x[2][11],t,e;
int n,Num,i,j,k,flag=0;
printf("input iterative times:");
scanf("%d",&Num);
printf("input error rang:
www.eeworm.com/read/450363/7485137
c 高斯 赛德尔迭代.c
#include
#include
void main()
{
float a[11][12],x[2][11],t,e;
int n,Num,i,j,k,flag=0;
printf("input iterative times:");
scanf("%d",&Num);
printf("input error rang:
www.eeworm.com/read/450287/7486146
txt matlab.txt
% 本程序主要用来计算根据灰色理论建立的模型的预测值。
% 应用的数学模型是 GM(1,1)。
% 原始数据的处理方法是一次累加法。
%y=input('请输入数据 ');
n=length(y);
yy=ones(n,1);
yy(1)=y(1);
for i=2:n
yy(i)=yy(i-1)+y(i);
end
B=ones(n-1,2);
for i=1:(n
www.eeworm.com/read/449815/7496245
c 长整数.c
#include
#include
typedef struct Node{
int data ; // 数据域
struct Node *prior; // 前驱
struct Node *next ; // 后继
}LNode, *LinkList;
void InitLink(
www.eeworm.com/read/449694/7497973
c 递推.c
#define NUM 10
#include
int i[NUM];
main()
{
int sum,n,total,k,flag,count=0;
printf("Please enter requried terms(
www.eeworm.com/read/449694/7498010
c 递归车厢.c
/**********递归题改为非递归题实例 车厢********/
#include
#define MAX 4
int stack[MAX],p=-1;
struct
{
int num;
int sign;
}train[MAX];
void sub()
{
int inc;
if(p==MAX-