搜索结果
找到约 80 项符合
SUM 的查询结果
按分类筛选
- 全部分类
- 其他 (9)
- matlab例程 (7)
- Java编程 (6)
- 数值算法/人工智能 (6)
- 汇编语言 (5)
- 源码 (5)
- 微处理器开发 (3)
- 通讯/手机编程 (3)
- 人工智能/神经网络 (3)
- Linux/Unix编程 (3)
- 单片机编程 (2)
- 数据结构 (2)
- 软件设计/软件工程 (2)
- VHDL/FPGA/Verilog (2)
- 编译器/解释器 (2)
- 数学计算 (2)
- Java书籍 (2)
- 书籍 (2)
- 电子书籍 (1)
- Delphi控件源码 (1)
- 串口编程 (1)
- 单片机开发 (1)
- 书籍源码 (1)
- 企业管理 (1)
- STL (1)
- SQL Server (1)
- 压缩解压 (1)
- 其他行业 (1)
- 通讯编程文档 (1)
- 技术书籍 (1)
- 其他 (1)
- 技术资料 (1)
Linux/Unix编程 Shut the Box is a simple diversion written in C and GTK+. The object is simple: Roll the dice and cl
Shut the Box is a simple diversion written in C and GTK+. The object is simple: Roll the dice and click the tiles that sum up to that dice roll until there are no more tiles to click.
压缩解压 学生成绩查询系统
学生成绩查询系统,运用结构体,struct ,sort ,Clrscr(),textcolor()函数,用for()循环语句,switch和ifelse作为条件测试语句。
程序实现了学生成绩查询功能,有20个我们班学生的数据信息,每个包含:
学号 — num [10](字符串)、姓名(拼音)— name[25](字符串)、
性别 — sex(字符,M或W)、年龄 — age(整型 ...
Linux/Unix编程 spoj CCOST . Usage of a 2 dimensional fenwick tree.Querying (log(n)^2) a 2 dimensional matrix for su
spoj CCOST . Usage of a 2 dimensional fenwick tree.Querying (log(n)^2) a 2 dimensional matrix for sub sum and updating a cell in O(logn)
Java编程 Genetic Algorithm example using Java You have 10 cards numbered 1 to 10. You have to divide them i
Genetic Algorithm example using Java
You have 10 cards numbered 1 to 10.
You have to divide them into 2 piles so that:
The sum of the first pile is as close as possible to 36 and the product of all in second pile is as close as poss to 360.
其他 NN Functions a program in Lisp to demonstrate working of an artificial neuron. (Enter an input vect
NN Functions
a program in Lisp to demonstrate working of an artificial neuron. (Enter an input vector X and weight vector W. Calculate weighted sum XW. Transform this using signal or activation functions like logistic, threshold, hyperbolic-tangent, linear, exponential, sigmoid or some other functio ...
matlab例程 ADIAL Basis Function (RBF) networks were introduced into the neural network literature by Broomhead
ADIAL Basis Function (RBF) networks were introduced
into the neural network literature by Broomhead and
Lowe [1], which are motivated by observation on the local
response in biologic neurons. Due to their better
approximation capabilities, simpler network structures and
faster learning algorithms, R ...
数值算法/人工智能 Solve the 8-puzzle problem using A * algorithme. Input: Program reads start state and goal state
Solve the 8-puzzle problem using A * algorithme.
Input: Program reads start state and goal state and heuristic (N or S) from EightPuzzle.INP file.0 representing blank.
There are 2 Heuristic:
1. N: Number of misplaced tiles
2. S: Sum of Manhattan distance of current location and target location.
...
Java书籍 第一章JSP简介 例子1(效果如图1.1所示) Example1_1.jsp: < @ page contentType="text/html charset=GB2312" >
第一章JSP简介
例子1(效果如图1.1所示)
Example1_1.jsp:
< @ page contentType="text/html charset=GB2312" >
<HTML>
<BODY BGCOLOR=cyan>
<FONT Size=1>
<P>这是一个简单的JSP页面
< int i, sum=0
for(i=1 i<=100 i++)
{ sum=sum+i
}
> ...
Java编程 Java的面向对象编程 掌握类的定义以及继承机制
Java的面向对象编程 掌握类的定义以及继承机制,熟悉方法的多态性。1、 成下面父类及子类的声明:(1)声明Student类。属性包括学号、姓名、英语成绩、数学成绩、计算机成绩和总成绩。方法包括构造方法、get方法、set方法、toString方法、equals方法、compare方法(比较两个学生的总成绩,结果分大于、小于、等于)、sum方 ...
Java编程 记录学生的信息 :(1)声明Student类。属性包括学号、姓名、英语成绩、数学成绩、计算机成绩和总成绩。方法包括构造方法、get方法、set方法、toString方法、equals方法、compa
记录学生的信息
:(1)声明Student类。属性包括学号、姓名、英语成绩、数学成绩、计算机成绩和总成绩。方法包括构造方法、get方法、set方法、toString方法、equals方法、compare方法(比较两个学生的总成绩,结果分大于、小于、等于)、sum方法(计算总成绩)和testScore方法(计算评测成绩,即平均成绩)。 ...