代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/132541/14085143
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/234930/14091609
cpp c18_01.cpp
#include
#include
using namespace std;
int main()
{
double average = 22.0/7;
cout
www.eeworm.com/read/204914/15331579
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/202486/15381805
cpp ex0421.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 4.21 on page 71
// Using a break statement in the middle of an infinite loop
#include
www.eeworm.com/read/202322/15386643
txt test1_14.txt
float average (array)
float array[10];
{
int j;
float aver,sum=array[0];
for(j=1:j
www.eeworm.com/read/202322/15386739
txt test1_14.txt
float average (array)
float array[10];
{
int j;
float aver,sum=array[0];
for(j=1:j
www.eeworm.com/read/202201/15389596
cpp f1001.cpp
//=====================================
// f1001.cpp
// 继承
//=====================================
#include
using namespace std;
//-------------------------------------
class Advisor{
www.eeworm.com/read/202201/15389597
cpp f1002.cpp
//=====================================
// f1002.cpp
// constructing derived class
//=====================================
#include
using namespace std;
//-----------------------------
www.eeworm.com/read/200847/15421875
cpp cpp2.cpp
#include "iostream.h"
double average(double a[],double aver,int m,int n)
{
if(m
www.eeworm.com/read/200593/15428808
bak student_scoure.java.bak
interface Student_scoure //学生成绩接口
{
float total();
float average();
void output();
}