代码搜索:average

找到约 5,196 项符合「average」的源代码

代码结果 5,196
www.eeworm.com/read/360311/10103209

cpp xt9-9.cpp

#include using namespace std; class Product {public: Product(int n,int q,float p):num(n),quantity(q),price(p){}; void total(); static float average(); static void displa
www.eeworm.com/read/360311/10103767

cpp c9-11.cpp

#include using namespace std; class Student {public: Student(int,int,int); void total(); static float average(); private: int num; int age; float score; s
www.eeworm.com/read/359900/10116899

m statxture.m

function t = statxture(f, scale) %STATXTURE Computes statistical measures of texture in an image. % T = STATXURE(F, SCALE) computes six measures of texture from an % image (region) F. Parameter
www.eeworm.com/read/359581/10135279

c flexmemb.c

// flexmemb.c -- flexible array member #include #include struct flex { int count; double average; double scores[]; // flexible array member }; void sho
www.eeworm.com/read/163234/10169144

h bp.h

#include #include #include #include #include #define MAXLAYERS 4 #define MAXNEURONS 80 #define MAXPATTERNS 80 #defin
www.eeworm.com/read/359005/10171978

fis tippersg.fis

% $Revision: 1.2 $ [System] Name='sugeno tipper' Type='sugeno' NumInputs=2 NumOutputs=1 NumRules=3 AndMethod='min' OrMethod='max' ImpMethod='min' AggMethod='max' DefuzzMethod='wtaver' [Input1] Name='
www.eeworm.com/read/358682/10182198

cpp cingolf.cpp

// cingolf.cpp -- non-numeric input skipped #include const int Max = 5; int main() { using namespace std; // get data int golf[Max]; cout
www.eeworm.com/read/358682/10182248

cpp block.cpp

// block.cpp -- use a block statement #include int main() { using namespace std; cout
www.eeworm.com/read/357794/10200980

txt 解题报告_王波.txt

1002:大数加法。开两个数组,用来存两个加数a,b。如果a>=b,那么加的结果可以放在a里头。反之,则放在b里头。这样可以节约空间。 1003:大数乘法。做法与1002类似。 1005(Move cards):此题带有贪心的算法。从第一堆开始,向后推移。设平均每堆数量为<mark>average</mark>,如果前n堆的数目小于<mark>average</mark>*n,则继续向后推移;否则,如果等于<mark>average</mark>*n,那么则在前n堆里头 ...
www.eeworm.com/read/356874/10219861

c flexmemb.c

// flexmemb.c -- flexible array member #include #include struct flex { int count; double average; double scores[]; // flexible array member }; void sho