代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/202486/15381531
cpp pr0603.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.3 on page 143
// Passing an array to a function
#include
using namespace s
www.eeworm.com/read/200130/15440917
m function2.m
function average=function2(vector)
%function2 A simple function with a single help line
%usage of this function
%”output” is the average of the input vector “input”.
%Roger Jang,19991123.
average
www.eeworm.com/read/113029/15472067
cpp fig04_23.cpp
// Fig. 4.23: fig04_23.cpp
// Double-subscripted array example.
#include
using std::cout;
using std::endl;
using std::fixed;
using std::left;
#include
using std::set
www.eeworm.com/read/112070/15494100
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/111805/15502743
java months.java
//Chapter 4, Exercise 1
public class Months {
public static void main(String args[]) {
// Initialize the months' array with names of the months of the year:
String[] monthNames = {
www.eeworm.com/read/111220/15516706
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/109973/15544464
cpp accum6.cpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/109973/15544474
cpp accum1.cpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/109973/15544481
cpp accum2.cpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/109973/15544482
cpp accum9.cpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde