搜索结果
找到约 161 项符合
student 的查询结果
按分类筛选
- 全部分类
- Java编程 (20)
- 其他 (19)
- 其他书籍 (11)
- 教育系统应用 (10)
- SQL Server (8)
- 书籍 (8)
- 其他数据库 (7)
- 数据库系统 (6)
- matlab例程 (5)
- 汇编语言 (4)
- 编译器/解释器 (4)
- 电子书籍 (4)
- 软件设计/软件工程 (4)
- 源码 (4)
- VC书籍 (3)
- 文章/文档 (3)
- 通讯编程文档 (3)
- 开发工具 (2)
- *行业应用 (2)
- 压缩解压 (2)
- Jsp/Servlet (2)
- Internet/网络编程 (2)
- 企业管理 (2)
- 通讯/手机编程 (2)
- Java书籍 (2)
- PCB相关 (1)
- 技术书籍 (1)
- 实用工具 (1)
- EDA相关 (1)
- 人工智能/神经网络 (1)
- 人物传记/成功经验 (1)
- MySQL数据库 (1)
- 书籍源码 (1)
- 数据结构 (1)
- 操作系统开发 (1)
- 技术管理 (1)
- JavaScript (1)
- 易语言编程 (1)
- 嵌入式/单片机编程 (1)
- 系统设计方案 (1)
- 文件格式 (1)
- Oracle数据库 (1)
- 编辑器/阅读器 (1)
- 其他行业 (1)
- 多国语言处理 (1)
- Delphi/CppBuilder (1)
- Linux/uClinux/Unix编程 (1)
数据库系统 在Visual C++中使用MSFlexGrid控件的几点改进
在Visual C++中使用MSFlexGrid控件的几点改进,首先要配置ODBC数据源,添加一个ACCESS数据源命为Student Registration,
将数据库指向源程序目录下的student.mdb。
其他 Array function. Read data from the text file and generate the output. This program evaluate the gred
Array function. Read data from the text file and generate the output. This program evaluate the gred for student mark.
编译器/解释器 Array function. Read data from the text file and generate the output. This program evaluate the gred
Array function. Read data from the text file and generate the output. This program evaluate the gred for student mark.
数据库系统 程序名称:学生管理信息管理系统 可以增加
程序名称:学生管理信息管理系统
可以增加,删除,查找学生的资料。或者以格式化形式输出在print.txt这个文件中。学生资料以二进制储存在datadase.dat中。
程序分为三个文件:student.h ,student.cpp, database.cpp
类Student.可以设置名字(包括firstName和lastName)还有id,岁数(age),score(评价).每个data member都有分别 ...
Java编程 Java的面向对象编程 掌握类的定义以及继承机制
Java的面向对象编程 掌握类的定义以及继承机制,熟悉方法的多态性。1、 成下面父类及子类的声明:(1)声明Student类。属性包括学号、姓名、英语成绩、数学成绩、计算机成绩和总成绩。方法包括构造方法、get方法、set方法、toString方法、equals方法、compare方法(比较两个学生的总成绩,结果分大于、小于、等于)、sum方 ...
通讯编程文档 Signal and system with matlab computing and simulink modeling is a good book for communication stude
Signal and system with matlab computing and simulink modeling is a good book for communication student and engineer due to the methods and tools mentioned in the book
其他书籍 As a general rule, PhD students and their supervisors tend to focus primarily, or even exclusively,
As a general rule, PhD students and their supervisors tend to focus
primarily, or even exclusively, on the content of the research that will
go into the doctoral thesis. Other issues are often taken for granted:
how to organize your work, give a presentation, work in a team, cope
with your superviso ...
Java书籍 Shop Cart
An application that adds products to
an electronic shopping cart. The application uses three classes: Product, ShoppingCart, and ShoppingCartApplication. Part of the
work has been done for you and is provided in the student archive. You will
implement the method in ShoppingCartApplication that rea ...
Linux/uClinux/Unix编程 c语言程序源
#include <iostream>
using namespace std;
class Student
{
public:
Student(int, int);
int num;
int grade;
};
Student::Student(int n, int g)
{
num = n;
grade = g;
}
int maxGradeIndex(Student* s)
{
int maxGrade, index = 0, i = 0;
maxGrade = s[0].grade;
for (i = 0; i<5; i++)
{
if (s[i].grade > maxGrade)
...