代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/145921/12692256
c anothertestapp.c
// Description: Driver program that makes use of the average library function
// to compute the average value of a set of integer data values
#include
int main()
{
int test_
www.eeworm.com/read/333254/12693220
cpp cingolf.cpp
// cingolf.cpp -- non-numeric input skipped
#include
const int Max = 5;
int main()
{
using namespace std;
// get data
int golf[Max];
cout
www.eeworm.com/read/333254/12693352
cpp block.cpp
// block.cpp -- use a block statement
#include
int main()
{
using namespace std;
cout
www.eeworm.com/read/145874/12697829
java hw8_23.java
//8-23 试修改app8_15,加入average(CCircle c[])method
//用来返回Circle对象数组里所有radius成员的平均值。
class CCircle
{
private static double pi=3.14;
private double radius;
public CCircle(double r) //CC
www.eeworm.com/read/145817/12700740
java array01.java
// =============== Program Description ===============
// 程序名称: array01.java
// 程序目的: 运用一维数组设计一个可计算多个数的平均值的程序。
// Written By Kuo-Yu Huang. (WANT Studio.)
// ======================================
www.eeworm.com/read/145545/12715502
java debug11_5.java
package questions.c11;
public class Debug11_5 extends Thread {
private int samples;
private double average;
public Debug11_5( int s ) {
samples = s;
}
public synchronized v
www.eeworm.com/read/144671/12777565
java listing 11-78.java
private void DownRow ( ResultSet DisplayResults )
throws SQLException
{
long Orders;
long Average;
long Sum;
Orders = DisplayResults.getLong ( 1 ) ;
Average = DisplayResults.getL
www.eeworm.com/read/245818/12779269
c flexmemb.c
// flexmemb.c -- flexible array member
#include
#include
struct flex
{
int count;
double average;
double scores[]; // flexible array member
};
void sho
www.eeworm.com/read/245698/12784410
cpp xt3-9.cpp
#include
using namespace std;
class Product
{public:
Product(int n,int q,float p):num(n),quantity(q),price(p){};
void total();
static float average();
static void displa
www.eeworm.com/read/245637/12786682
h class.h
#include class RecurveArray { //数组类声明 private: int *Elements; //数组指针 int ArraySize; //数组尺寸
int CurrentSize; //当前已有数组元素个数 public :
RecurveArray ( int MaxSize =10 ) :