代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/457219/7331773
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/457133/7333674
cpp 1..35.cpp
/* 给某个玩家100元的资本,让他不停押注直到输光,计算需要赌博多少次?
如果把次数放在数组ruinLength[]中,进行1000次实验后,看看破产的最大次数、
最小次数和平均次数分别是多少?*/
//赔率为1:35
#include
#include
using namespace std;
void main()
{
www.eeworm.com/read/456497/7347985
cpp c09.cpp
// c09.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
const int n = 5;
const int m = 4;
static int a[n][m] = {
98, 99, 96, 100, 100
www.eeworm.com/read/456402/7349923
c prepair.c
/*****************************************************
Zhang Pengpeng (rocflyhi@gmail.com)
from
Colleage of Information Science and Technology
Nanjing University of Aeronautics and Astronautics
www.eeworm.com/read/456386/7350034
c query.c
/* 学生成绩查询系统 */
# include
# include
void main( )
{
int select;
int i, j;
int score[5][7];
int average = 0;
int sum = 0;
do{
printf("本程序有4项功能:\n");
printf
www.eeworm.com/read/456357/7351247
plot fitness.plot
#set multiplot
set autoscale
set output 'plot.ps'
set terminal postscript landscape enhanced color solid simplex 'Helvetica'
set yrange [0:200]
set xlabel "Generation"
set ylabel "Fitness"
set xzeroax
www.eeworm.com/read/455917/7361837
m ldadesign.m
function LWt=LDADesign(n,m,sampleset,classnum,samplelabel,eignum)
% LDADESIGN will return LDA transformation matrix
% n denotes the problem's dimension
% m is the number of samples
% sampleset sto
www.eeworm.com/read/455917/7361843
m eldadesign.m
function LWt=ELDADesign(n,m,sampleset,classnum,samplelabel,eignum)
% ELDADESIGN will return ELDA(efficient LDA) transformation matrix
% n denotes the problem's dimension
% m is the number of sample
www.eeworm.com/read/452713/7434452
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/452713/7434497
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