代码搜索:average

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

代码结果 5,196
www.eeworm.com/read/414298/11122010

java people.java

public class People { protected double weight,height; public void speakHello() { System.out.println("yayawawa"); } public void averageHeight() { h
www.eeworm.com/read/268642/11126802

java polymorphism.java

/* * Polymorphism.java * * Created on 2007年6月6日, 下午7:08 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ /** * * @author jgfd
www.eeworm.com/read/413884/11138323

h grademanager.h

//GradeManager.h class GradeManager { char name[20]; //学生姓名 float chinese; //语文成绩 float math; //数学成绩 public: float average(void); //计算平均成绩 float sum(void); //计算总分 void show(void); //打印信
www.eeworm.com/read/413044/11169014

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/412508/11195152

gp hopsdata.gp

set terminal postscript eps set size 2,2 set output "HopsData.ps" set title "" set xlabel "X speed (m/s) " set ylabel "Hops average" set terminal postsc
www.eeworm.com/read/266139/11238823

cpp manage.cpp

#include #include #include using namespace std; //////////////////////////////////////声明一个结构体类型Student/////////////////////////////////// struct Student { int nu
www.eeworm.com/read/266116/11239707

cpp demo_3_static_member_5.cpp

//************************************************ #include class Student { public: Student(int,int,float); void total(); static float average(); private: int num; in
www.eeworm.com/read/265929/11249600

txt test1_14.txt

float average (array) float array[10]; { int j; float aver,sum=array[0]; for(j=1:j
www.eeworm.com/read/265929/11249734

txt test1_14.txt

float average (array) float array[10]; { int j; float aver,sum=array[0]; for(j=1:j
www.eeworm.com/read/410963/11263138

txt ads7843.txt

触摸屏ADS7843驱动程序设计614593726 这两天一直调触摸屏,本来拿到触摸屏的下午就读出来数据了,但是由于是自己搭的电路,不大稳定,本来程序也有一些问题,导致一直调了两天,从读到数据不稳定到稳定,从数据处理有问题到没有问题,一步步完善。 个人感觉程序写的时候好写,关键是调程序,完善程序,调了两天,虽然时间长了一点,但是感觉又学到了不少调程序的技巧。 //======= ...