代码搜索:source 有哪些应用?
找到约 10,000 项符合「source 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/156676/11785405
txt source.txt
int gcd(int u, int v)
{
if(v==0) return u;
else return gcd(v,u-u/v*v);
}
int main()
{
int x;
int y;
int result;
x=49;
y=21;
result=gcd(x,y);
return result;
www.eeworm.com/read/259400/11795548
m source.m
function data = source(fr_length,frames,md,zf,varargin)
%SOURCE Generate source data.
% D = SOURCE(K,F,MD,ZF) creates a data source consists of desired
% number of F frames each having K symbols.
www.eeworm.com/read/259114/11819895
zip source.zip
www.eeworm.com/read/155858/11843208
exe source.exe
www.eeworm.com/read/258453/11861826
rar source.rar
www.eeworm.com/read/155390/11881127
zip source.zip
www.eeworm.com/read/257465/11925498
cpp source.cpp
#include"iostream.h"
#define M 5
typedef struct{
int n_a;
int n_b;
int n_c;
int n_d;
}Need;
typedef struct{
int l_a;
int l_b;
int l_c;
int l_d;
}Allocation;
t
www.eeworm.com/read/154545/11947572