代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/439664/7703732
txt code47a.txt
Public Sub Main ()
Dim Seconds_In_An_Hour As Integer
Dim Average As Single
Seconds_In_An_Hour = 60 * 60
Average = (5 + 10 + 15 + 20) / 4
Debug.Print "The number of seconds in an hou
www.eeworm.com/read/435150/7796447
cpp prog20_05.cpp
// Program 20.5 Taking the average of values from a stream File: prog20_05.cpp
#include
#include // For the istream_iterator template
using std::cout;
using st
www.eeworm.com/read/199774/7823169
m program_03_06.m
% Program 3_6
% Illustration of Overlap-Add Method
%
% Generate the noise sequence
colordef black;
R = 64;
d = rand(R,1)-0.5;
% Generate the uncorrupted sequence and add noise
for m = 1:1:R;
www.eeworm.com/read/399588/7845684
cpp main.cpp
#include
#include"discount.h"
void main()
{
discount a(5,23.5);
discount b(12,24.5);
discount c(100,21.5);
c.display();
cout
www.eeworm.com/read/434541/7861125
dat accl_summary.dat
Time: Mean = 15, SD = 0
Number: Mean = 4, SD = 0
FMeasure: Mean = 0.824888, SD = 0
Rand: Mean = 0.847914, SD = 0
Variance: Mean = 0.742448, SD = 0
Dunn (Average): Mean = 9.81987, SD = 0
www.eeworm.com/read/296805/8076247
htm avg.htm
Enter the 1st number:
Enter the 2nd number:
The average is 11.500000
www.eeworm.com/read/296772/8078421
out report.out
Monthly Weather Report
Location: Seattle/tacoma(SEATAC)International Airpot
Date:April 1995
Average Temperatures:High 36.9667, low 22.1333
Hottest Temperature: 38.4
Coldest Temperature: 18.
www.eeworm.com/read/145921/12691643
c averagevalue.c
// ****************************************************************
// Description: Library function to determine the
// average value of a integer array. Note this code stresses
// simplicity o
www.eeworm.com/read/145921/12692226
c averagevalue.c
// ****************************************************************
// Description: Library function to determine the
// average value of a integer array. Note this code stresses
// simplicity o
www.eeworm.com/read/246953/12695918
c ex4-5.c
#include
float average(array, n)
int n;
float array[];
{
int i;
float aver, sum=array[0];
for (i=1; i