代码搜索:average

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

代码结果 5,196
www.eeworm.com/read/147406/12554648

c math.c

#include void main(void) { int seconds_in_an_hour; float average; seconds_in_an_hour = 60 * 60; average = (5 + 10 + 15 + 20) / 4; printf("The number of seconds i
www.eeworm.com/read/248541/12554696

f readmon.f

subroutine readmon !! ~ ~ ~ PURPOSE ~ ~ ~ !! reads in the input data for the recmon command !! ~ ~ ~ INCOMING VARIABLES ~ ~ ~ !! name |units |definit
www.eeworm.com/read/248541/12554708

f rthsed.f

subroutine rthsed !! ~ ~ ~ PURPOSE ~ ~ ~ !! this subroutine routes sediment from subbasin to basin outlets !! on an hourly timestep !! ~ ~ ~ INCOMING VARIABLES ~ ~ ~ !
www.eeworm.com/read/248263/12587232

txt 七数平均值.txt

10 rem calculate average of seven integers 20 input x 30 rem enter -9999 to stop 35 if x == -9999 goto 60 40 let t = t + x 50 goto 20 60 let t = t / 7 65 print t 70 end
www.eeworm.com/read/146694/12618563

cpp f04.cpp

//f04.cpp #include //cin,cout #include //getch() void main() { int a[10],i; float ave=0; cout
www.eeworm.com/read/146694/12618738

cpp f04.cpp

//f04.cpp #include //cin,cout #include //getch() void main() { int a[5],i; float ave=0.0; //或ave=0; cout
www.eeworm.com/read/146632/12629934

h parameters.h

// UniformDist.h: interface for the UniformDist class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_PARAMETERS__INCLUDED_) #define AFX_PARAMETERS__I
www.eeworm.com/read/247679/12631787

cpp ceyan.cpp

// 程序实例 1_1 // 计算总分和平均分 #include void main() { int t1,t2,t3,t4,t5; int t6,t7,t8,t9,t10; //声明10个变量 int sum; //总分 int average; //平均分 t1=89
www.eeworm.com/read/247679/12632300

cpp cenyan.cpp

// 程序实例 1_2 // 计算总分和平均分 #include void main() { int t[10]={89,96,66,77,86,92,90,79,62,80}; //声明一个数组来存储成绩 int sum; //总分 int average;
www.eeworm.com/read/146506/12641656

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