代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/144074/12819371
h student.h
#ifndef STUDENT
#define STUDENT
// student record containing an id and grade point average
struct Student
{
int studID;
float gpa;
};
// overload "==" by comparing student
www.eeworm.com/read/331592/12819423
m sam5_filter.m
% BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
% FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
% OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS
www.eeworm.com/read/331564/12820471
java returnarraydemo.java
import java.util.*;
/**
A program to demonstrate a method returning an array.
*/
public class ReturnArrayDemo
{
public static void main(String[] args)
{
System.out.println
www.eeworm.com/read/331555/12821586
java salesreporter.java
import java.util.*;
/**
Program to generate sales report.
*/
public class SalesReporter
{
private double highest;
private double average;
private SalesAssociate[] record;//The
www.eeworm.com/read/331439/12828892
m mean.m
function m = mean(X, dim)
% MEAN Average or mean value.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/244888/12838983
c 1_1b.c
/* ======================================== */
/* 程序实例: 1_1b.c */
/* 计算总分和平均分 */
/* ======================================== */
void main()
{
www.eeworm.com/read/143661/12852704
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/244008/12899613
cpp f1001.cpp
//=====================================
// f1001.cpp
// 继承
//=====================================
#include
using namespace std;
//-------------------------------------
class Advisor{
www.eeworm.com/read/244008/12899616
cpp f1002.cpp
//=====================================
// f1002.cpp
// constructing derived class
//=====================================
#include
using namespace std;
//-----------------------------
www.eeworm.com/read/330219/12906965
cpp ch16_1.cpp
//**********************
//** ch16_1.cpp **
//**********************
#include
#include
class Advisor{
int noOfMeeting;
};
class Student{
public:
Student