代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/452695/7436263
c ex2_04.c
/* Exercise 2.4 Calculating average hourly pay rate */
#include
int main(void)
{
double pay = 0.0; /* Weekly pay in dollars */
double hours = 0.0; /*
www.eeworm.com/read/452695/7436331
c program5_03.c
/* Program 5.3 Averaging ten numbers - storing the numbers the easy way */
#include
int main(void)
{
int numbers[10]; /* Array storing 10 values */
int cou
www.eeworm.com/read/452695/7436372
c program5_01.c
/* Program 5.1 Averaging ten numbers without storing the numbers */
#include
int main(void)
{
int number = 0; /* Stores a number */
int count = 10
www.eeworm.com/read/452695/7436383
c program4_06.c
/* Program 4.6 The almost indefinite loop - computing an average */
#include
#include /* For tolower() function */
int main(void)
{
char answer = 'N'; /*
www.eeworm.com/read/452222/7444742
m plot.m
function plot(chr,varargin)
% PLOT - plots the generations.
% plot(chr,arch) plots the best member in each generation as well as
% the average value of the population. The argument chr should b
www.eeworm.com/read/452217/7444957
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/452050/7451678
java 3447723_ac_391ms_3060k.java
import java.util.*;
import java.math.*;
public class Main {
private Scanner in;
public static void main(String [] args) {
System.out.println("MAKING THE GRADE OUTPUT");
new Main().run(
www.eeworm.com/read/206731/7456639
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/450608/7480400
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/449590/7499733
c 6.c
# define N 5
main( )
{
int x , num[N+1] ;
float st[N+1] , ave , sum=0;
for (x=1 ; x