代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/375429/9360301
sql create table course.sql
use test
create table course
(
cno int,
cname nchar(20),
credit int,
aver as
(
dbo.average(cno)
)
)
www.eeworm.com/read/374949/9378002
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/374597/9394035
txt 第一章1.txt
#include
class CStuscore
{
public:
float Average(void); // 求平均成绩:在类中声明
char * getName() // 获取姓名:声明和定义同时在类中完成
{
return strName;
}
char * getNo() // 获取学号:声明和定义
www.eeworm.com/read/178237/9412679
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 tes
www.eeworm.com/read/178237/9413063
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/177559/9447899
m hilbertmotai.m
%%**************************************************************************************************************************************************************
% 本程序为函数功能,目的是应用Hilbert-Huang变换寻找信号的
www.eeworm.com/read/177559/9447922
m qingxiexiangjiapingjun.m
%**************************************************************************************************************************************************************
% 本程序为主程序,目的是运用统计分析法计算WM1000发动机故障诊断所布
www.eeworm.com/read/177199/9465696
java e3_10.java
class Sum
{
int n;
float f()
{
float sum = 0;
for(int i=1;i
www.eeworm.com/read/372509/9506690
cpp ch16_1.cpp
//**********************
//** ch16_1.cpp **
//**********************
#include
#include
class Advisor{
int noOfMeeting;
};
class Student{
public:
Student
www.eeworm.com/read/175135/9558622
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