代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/471682/6887914
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/471682/6887958
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/471682/6887969
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/195211/8168406
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/194440/8194230
m avgplustime.m
function [plust] = avgplustime(fbcoord,td1,standard,plustreject,dev)
% Calculation of the average Plus Time at each receiver location
% Rejection of some of the Plus Time based on the standard deviati
www.eeworm.com/read/192739/8289082
c al7_7.c
/*案例代码文件名:AL7_7.C*/
/*功能:数组名作为函数参数,求平均成绩*/
float aver(float a[ ]) /*定义求平均值函数,形参为一浮点型数组名*/
{int i;
float av,s=a[0];
for(i=1;i
www.eeworm.com/read/292921/8323517
m segsnr.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/292920/8324257
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
www.eeworm.com/read/392223/8356672
txt 7.1-1.txt
#include
int main(void)
{
int i,n,m[10],sum=0;
double average=0;
printf("Input n:");
scanf("%d",&n);
printf("Input %d integers:",n);
for(i=0;i
www.eeworm.com/read/370011/9625121
c 2-9.c
#include"stdio.h"
main()
{
float T[4][7],sum,avg;
int i,j;
float f1,*f2;
clrscr();
sum=avg=0;
scanf("%f",&T[0][0]);
sum=sum+T[0][0];
for(i=0;i