代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/401557/11556145
cpp c9-11.cpp
#include
using namespace std;
class Student
{public:
Student(int,int,int);
void total();
static float average();
private:
int num;
int age;
float score;
s
www.eeworm.com/read/400386/11577839
cpp c9-11.cpp
#include
using namespace std;
class Student
{public:
Student(int,int,int);
void total();
static float average();
private:
int num;
int age;
float score;
s
www.eeworm.com/read/400386/11577960
cpp xt9-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/400350/11578591
txt 1.txt
//*****************************************
//*
//* 完成日期: 2007年4月19日
//* 章 节: 第一章
//* 题 号: 习题 2
//* 题 目:编写一个程序,要求用户输入一年12个月中,每月的降雨总量,
//* 并采用一个float数组存储.程序显示:一年内的总降雨量,平均
//* 每月的
www.eeworm.com/read/158379/11622340
c math.c
#include
void main ()
{
int seconds_in_an_hour;
float average;
seconds_in_an_hour = 60 * 60;
average = (5 + 10 + 15 + 20) / 4;
printf("The number of secon
www.eeworm.com/read/158370/11623031
cpp 2viii.cpp
// SUMAVE.CPP A program to sum and average a list
// of positive values
#include
void main()
{ float number, sum = 0.0, count = 0.0, average;
cout
www.eeworm.com/read/347848/11632039
java averager.java
import java.util.Scanner;
public class Averager
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
System.out.println("Enter a list
www.eeworm.com/read/347848/11632396
java golfscores.java
import java.util.ArrayList;
import java.util.Scanner;
public class GolfScores
{
/**
Shows differences between each of a list of golf scores and their average.
*/
public s
www.eeworm.com/read/260947/11684833
cpp 9_78.cpp
#include
#include
#define Max 20
class English
{
int ptr;
int score[Max];
public:
void getdata(int val,int ptr) {score[ptr]=val;}
int disp(int ptr){return score[ptr
www.eeworm.com/read/260724/11706011
cpp sd.cpp
#include
#include
#include
struct st
{
char name[20];
int english;
int math;
int chinese;
int average;
st *next;
};
struct st