代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/395034/8198965
h student.h
class Course;
class Student
{
public:
Student(char* n1="no name");
void SetName(char* n1);
char* GetName();
double GetScore(Course* c);
double Average();
void AddCourse(Course* c,double
www.eeworm.com/read/395034/8198966
cpp main.cpp
#include
#include"student.cpp"
void main()
{
Student zhang3;
Student li4;
Course math;
zhang3.AddCourse(&math,3.1);
li4.AddCourse(&math,4.5);
cout
www.eeworm.com/read/395034/8199029
h student.h
class Course;
class Student
{
public:
Student(char* n1="no name");
void SetName(char* n1);
char* GetName();
double GetScore(Course* c);
double Average();
void AddCourse(Course* c,double
www.eeworm.com/read/395034/8199030
cpp main.cpp
#include
#include"student.cpp"
void main()
{
Student zhang3;
Student li4;
Course math;
zhang3.AddCourse(&math,3.1);
li4.AddCourse(&math,4.5);
cout
www.eeworm.com/read/294203/8246896
m mean.m
function m = mean(X, dim)
% MEAN Average or mean value.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/293928/8262683
c 1_1b.c
/* ======================================== */
/* 程序实例: 1_1b.c */
/* 计算总分和平均分 */
/* ======================================== */
void main()
{
www.eeworm.com/read/393676/8270081
cpp xt3-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/393095/8312618
java halfdollars.java
class HalfDollars {
public static void main(String[] arguments) {
int[] denver = { 15000006, 18810000, 20752110 };
int[] philadelphia = new int[denver.length];
int[] to
www.eeworm.com/read/393017/8314900
m tuxquz1.m
i=imread('eight.tif');
imshow(i);
j=imnoise(i,'salt & pepper',0.02);
figure;
imshow(j);
k=filter2(fspecial('average',3),j)/255;
figure;
imshow(k);
l=medfilt2(j,[3 3]);
figure;
imshow(l);
%h
www.eeworm.com/read/292920/8324048
c flexmemb.c
// flexmemb.c -- flexible array member
#include
#include
struct flex
{
int count;
double average;
double scores[]; // flexible array member
};
void sho