虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

10.<b>00</b>

  • /* Name: soj 1169: Networking From: Computer Science Department of Sichuan University Author:

    /* Name: soj 1169: Networking From: Computer Science Department of Sichuan University Author: LoyaltyJi Date: 03-05-06 00:35 Description: 求最小生成树经典题! */

    标签: Department Networking University Computer

    上传时间: 2015-10-05

    上传用户:dreamboy36

  • Java经典教程core java

    Java经典教程core java,书上的源代码, volume1,chapter8-10

    标签: Java core java 教程

    上传时间: 2015-10-17

    上传用户:xaijhqx

  • 摘 要 I Summary II 1.系统概述 1 1.1 系统及需求分析 1 1.1.1 系统需求 1 1.1.2可行性分析 1 1.2系统设计的背景 5 1.3系统的功能简介 8

    摘 要 I Summary II 1.系统概述 1 1.1 系统及需求分析 1 1.1.1 系统需求 1 1.1.2可行性分析 1 1.2系统设计的背景 5 1.3系统的功能简介 8 1.4系统开发的目标 10 2. 系统分析 11 2.1业务流程分析 11 2.2数据流程分析: 13 2.3数据存储分析:实体联系图 14 2.4功能分析:功能层次图 16 3.系统设计 17 3.1软件模块结构设计 17 3.2数据库设计 18 4.系统的功能 23 4.1系统登陆界面: 23 4.2系统主界面: 26 4.3用户管理模块: 38 4.4学生缴费管理模块: 43 5.系统的实现 55 5.1系统开发环境: 55 5.2系统测试: 55 5.3 系统运行与维护: 58 5.4系统的转换方案: 59 6.全文总结 60 致 谢 61 参考文献 62

    标签: Summary 1.1 1.2

    上传时间: 2015-10-23

    上传用户:aa17807091

  • 学生成绩管理 假设有一个班级的学生n人

    学生成绩管理 假设有一个班级的学生n人,期末考试老师要对成绩从高到低列出,并对各科的考试成绩求出其最高分、最低分和平均成绩。现在设计一个成绩管理程序,能够实现以下的功能: (1)对某门科目的成绩进行排序并显示输出; (2)求出每门科目的最高分、最低分和平均分的信息; 学生成绩的数据用结构数组表示,包括:学号、姓名、三门科目的考试成绩,其结构格式如下: 学号 姓名 语文 数学 外语 C++ int num char name[10] int score[4]

    标签:

    上传时间: 2015-10-24

    上传用户:Thuan

  • 由谭浩强编著的《C++程序设计》(清华大学出版社出版)一书中各章的例题程序

    由谭浩强编著的《C++程序设计》(清华大学出版社出版)一书中各章的例题程序,以方便教师进行教学,也便于读者上机运行这些程序以及在此基础上修改和调试程序。 程序按章设立文件夹(子目录),如文件夹c12中包含的是第12章全部例题的程序。程序的文件名以c开头,与例题号一一对应,如c5-7.cpp是第5章例5.7的程序。对于教材中同一例题中包含两个或多个程序的,在文件名中加了顺序号,如c10-4-1.cpp是例10.4的第1个程序,c10-4-2.cpp是例10.4的第2个程序。

    标签: 谭浩强 程序设计 清华大学 出版社

    上传时间: 2015-10-25

    上传用户:cc1915

  • Input The first line of the input contains a single integer T (1 <= T <= 20), the number of t

    Input The first line of the input contains a single integer T (1 <= T <= 20), the number of test cases. Then T cases follow. The first line of each case contains N, and the second line contains N integers giving the time for each people to cross the river. Each case is preceded by a blank line. There won t be more than 1000 people and nobody takes more than 100 seconds to cross. Output For each test case, print a line containing the total number of seconds required for all the N people to cross the river. Sample Input 1 4 1 2 5 10 Sample Output 17

    标签: the contains integer number

    上传时间: 2015-10-27

    上传用户:plsee

  • 1、Conn.asp 数据库连接文件 2、ipCheck.inc ip数据库查询函数 3、oc_ipRecord.asp ip记录文件(被调用文件) 4、oc_ipRec

    1、Conn.asp 数据库连接文件 2、ipCheck.inc ip数据库查询函数 3、oc_ipRecord.asp ip记录文件(被调用文件) 4、oc_ipRecord.inc ip记录数据库 5、RecordIP.inc ip记录函数 6、showIPaddess.asp 显示IP来源页面 7、showIPRecord.asp 显示ip记录页面 8、Turn.inc 多用翻页函数 9、updateIPFrom.asp 更新IP来源数据库文件 10、worldip.asp 世界ip来源数据库 11、xg.css css文件 12、xmlHttpRequest.js XMLHttpRequest对象获取js文件

    标签: oc_ipRecord asp oc_ipRec ipCheck

    上传时间: 2015-10-27

    上传用户:xyipie

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • 3、《ds1302a》实验 说明:本程序通过串口通信(借助串口调试等程序)

    3、《ds1302a》实验 说明:本程序通过串口通信(借助串口调试等程序),让单片机读写DS1302,结果返回到PC的串口调试接收区。 1)下载程序 2)打开串口调试助手 3)通过串口调试助手向ELITE-III发送"5501aa"(注:十六进制,55为设定的字串头,01为设定的1302命令,aa为设定的结束字串尾。)启动DS1302工作,成功则返回55,失败则返回00 4)通过串口调试助手向ELITE-III发送"5502aa"(注:十六进制,55为设定的字串头,02为读取1302命令,aa为设定的结束字串尾。)ELITE-III返回时钟信息(包含秒,分,时,星期,月,年)

    标签: 1302a 1302 程序 ds

    上传时间: 2013-12-10

    上传用户:l254587896

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    标签: converts Toolbox complex logical

    上传时间: 2016-02-12

    上传用户:a673761058