代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/137229/13337870
c report.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: report
www.eeworm.com/read/137160/13342285
m hclust.m
%HCLUST hierarchical clustering
%
% [LABELS, DENDROGRAM] = HCLUST(D,TYPE,K)
% DENDROGRAM = HCLUST(D,TYPE)
%
% INPUT
% D dissimilarity matrix
% TYPE string name of clustering criterion (opt
www.eeworm.com/read/136972/13350381
cpp xt7-5.cpp
#include
#include
using namespace std;
const int n=10;
struct student
{ char num[6];
char name[8];
int score[4];
float avr;
} stu[n];
int main()
{ int i,j,max,m
www.eeworm.com/read/136972/13350464
cpp xt6-15.cpp
#include
using namespace std;
int main()
{void avsco(float *,float *);
void avcour1(char (*)[10],float *);
void fali2(char course[5][10],int num[],float *pscore,float aver[4]);
voi
www.eeworm.com/read/136879/13356014
cpp fig04_23.cpp
// Fig. 4.23: fig04_23.cpp
// Double-subscripted array example
#include
#include
const int students = 3; // number of students
const int exams = 4; // number of
www.eeworm.com/read/136879/13356289
cpp fig18_02.cpp
// Fig. 18.2: fig18_02.cpp
// Using variable-length argument lists
#include
#include
#include
double average( int, ... );
int main()
{
double w = 37.
www.eeworm.com/read/319883/13440594
cpp prog5_02.cpp
// Program 5.2 Using a do-while loop to control input
#include
using std::cin;
using std::cout;
using std::endl;
int main() {
char ch = 0; // Stores
www.eeworm.com/read/319883/13440595
cpp prog5_11.cpp
// Program 5.11 Calculating an average in an indefinite loop
#include
#include
using std::cout;
using std::cin;
using std::endl;
int main() {
char ch = 0;
www.eeworm.com/read/319478/13450868
res rgrun.res
Sample data set for generalized runs test with N = 9, CFORM = 4 and G = 2.
GENERALIZED RUNS PERMUTATION PROCEDURES (RGRUN)
I
www.eeworm.com/read/319472/13451348
c scores_in.c
// scores_in.c -- uses loops for array processing
#include
#define SIZE 10
#define PAR 72
int main(void)
{
int index, score[SIZE];
int sum = 0;
float average;
prin