联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 控制台编程(23) 

[控制台编程] Demo4

字符串问题,大侦探福尔摩斯接到一张奇怪的字条:“我们约会吧! 3485djDkxh4hhGE 2984akDfkkkkggEdsb s&hgsfdk d&Hyscvnm”。大侦探很快就明白了,字条上奇怪的乱码实际上就是约会的时间“星期四 14:04”,因为前面两字符串中第1对相同的大写英文字母(大小写有区分)是第4个字母 D ,代表星期四;第2对相同的字符是 E ,那是第5个英文字母,代表一天里的第14个钟头(于是一天的0点到23点由数字0到9、以及大写字母A到N表示);后面两字符串第1对相同的英文字母 s 出现在第4个位置(从0开始计数)上,代表第4分钟。现给定两对字符串,请帮助福尔摩斯解码得到约会的时间。
String problem, big detective Sherlock Holmes received a strange note: We date it! 3485djDkxh4hhGE 2984akDfkkkkggEdsb s & hgsfdk d & Hyscvnm . The big detective soon understood that the strange garbled character was actually the date of the date Thursday 14:04 because the first two strings in the first pair of the same capital letters (case distinction) was the fourth The letter D , on behalf of Thursday the second pair of the same character is E , that is the fifth English letter, representing the first 14 days of the day (so the day 0:00 to 23 points 0 to 9, And the letters A to N) the first two strings of the same pair of letters s appear in the fourth position (counted 0), representing the first 4 minutes. Given two pairs of strings, please help Sherlock Holmes decode the time to get the date. (2017-05-28, Visual C++, 173KB, 下载1次)

http://www.pudn.com/Download/item/id/1495948375992222.html

[控制台编程] zhongweishu

i.中位数问题 问题描述 设X[ 0 : n - 1]和Y[ 0 : n – 1 ]为两个数组,每个数组中含有n个已排好序的数。找出X和Y的2n个数的中位数。 编程任务 利用分治策略试设计一个O (log n)时间的算法求出这2n个数的中位数。 数据输入 由文件input.txt提供输入数据。文件的第1行中有1个正整数n(n< 200),表示每个数组有n个数。接下来的两行分别是X,Y数组的元素。 结果输出 程序运行结束时,将计算出的中位数输出到文件output.txt中。 输入文件示例 输出文件示例 input.txt output.txt 3 5 15 18 3 14 21 14
That is a difficult problem which i used dynamic ways to solve it. (2017-05-25, Visual C++, 1KB, 下载1次)

http://www.pudn.com/Download/item/id/1495698372632683.html

[控制台编程] 55169507

用Delphi编写的控制网卡的小程序,可以启用和禁用网卡,大家可以一试,
Control card small program, written in Delphi can enable and disable the network card, you can try, (2017-04-24, Delphi, 186KB, 下载11次)

http://www.pudn.com/Download/item/id/1493005406505125.html

[控制台编程] pc2-9.4.1-3850

SYC经常跟同学玩单机版的“三国杀”游戏。他喜欢把每次玩的输赢记录成一个由 W 、 L 组成的字符串。其中 W 代表他赢了一局, L 代表他输了一局。游戏是五局三胜制,每次在对手之前取得三局胜利则视为赢得了一“场”,若对手先赢得三局胜利则输掉一“场”,无论输赢,都将开始下一场游戏。 现在,请你根据输入的字符串计算SYC赢了多少场。
OK, you are not too bad, em... But you can never pass the next test. feng5166 says. I will tell you an odd number N, and then N integers. There will be a special integer among them, you have to tell me which integer is the special one after I tell you all the integers. feng5166 says. But what is the characteristic of the special integer? Ignatius asks. The integer will appear at least (N+1)/2 times. If you can t find the right integer, I will kill the Princess, and you will be my dinner, too. Hahahaha..... feng5166 says. Can you find the special integer for Ignatius? (2017-04-20, Visual C++, 20782KB, 下载0次)

http://www.pudn.com/Download/item/id/1492675307151069.html

[控制台编程] huaweiOJ_key

华为OJ c++答案,华为机试刷题库专用,考前必备-华为OJ c++
huaweiOJ c++ answer,prepare for huawei (2015-12-26, Visual C++, 154KB, 下载57次)

http://www.pudn.com/Download/item/id/1451064214231511.html

[控制台编程] CityPlan

邻接矩阵表示两个城市之间是否有通路,试判断两个城市之间有几种路径 输入:3 1 2 1 1 1 1 1 1 1 1 1 输出:2
Adjacency matrix representation between the two cities have access, try to determine the path between the two cities have several inputs: 312111111111 Output: 2 (2013-09-26, Visual C++, 16KB, 下载5次)

http://www.pudn.com/Download/item/id/2363797.html

[控制台编程] studentinfomanagemen

学生信息包括:学号,姓名,年龄,性别,出生年月,地址,电话,E-mail等。试设计一学生信息管理系统,使之能提供以下功能: 1。各种基本数据的录入,如:学生信息的录入2。各种基本数据的修改,3。各种基本数据的删除4。基于各种数据的查询5。基于各种数据的统计计算6。打印所有学生的基本信息
Student information includes: Student ID, name, age, sex, date of birth, address, telephone, E-mail and so on. Try to design a student information management system, so that it can provide the following features: 1. Variety of basic data entry, such as: student information input 2. A variety of basic data modification, 3. Variety of basic data deletion 4. Based on various data query 5. Statistical calculations based on various data 6. Print basic information for all students (2013-07-02, C/C++, 6KB, 下载5次)

http://www.pudn.com/Download/item/id/2293947.html

[控制台编程] shiyan3

海萍夫妇为了彻底告别“蜗居”生活,痛下决心贷款60万元购买了一套三居室 。 若贷款月利率为0.5 ,还款期限为120个月,还款方式为等额本金还款法(即贷款期限内每期 以相等的额度偿还贷款本金,贷款利息随本金逐期递减)。试求出每个月还款的本金、每个月 的利息以及总利息分别是多少元。 若还款方式采用等额本息还款法(即贷款期限内每期以相 等的额度偿还贷款本息,贷款利息随本金逐期递减)。试求出每个月还款的本金、每个月的 利息以及总利息分别是多少元。
Haiping couple in order to bid farewell to " dwelling" life, faced up to 600,000 yuan loans purchased a three-bedroom. If the lending interest rate of 0.5 in January, the repayment period of 120 months, repayment is equal principal repayment method (ie, within the term of the loan in equal installments of principal repayment of the loan amount, loan interest of decreasing gradually with the principal ). Find the monthly repayment of principal, interest and total interest each month how many dollars respectively. If the repayment of principal and interest repayment method using equal (ie, within the term of the loan in equal installments of principal and interest repayment of the loan amount, loan interest with the principal by period descending). Find the monthly repayment of principal, interest and total interest each month how many dollars respectively. (2013-06-23, Visual C++, 1KB, 下载3次)

http://www.pudn.com/Download/item/id/2286458.html

[控制台编程] dijkstra

利用dijistra算法获取最短路径的控制台小程序,压缩包中含有设计报告。
Use dijistra algorithm to obtain the shortest path of the console applet package contains the design report. (2012-05-26, Visual C++, 553KB, 下载6次)

http://www.pudn.com/Download/item/id/1887706.html

[控制台编程] Cs_wangluo_youhua

一个优化网络的脚本,适合WIN2000和WINXP操作系统,可以在玩CS前优化一下网络,让游戏更顺畅...
A optimize network script, suitable for WIN2000 WINXP and operating system, can be in play before a CS optimization network, let the game more smoothly... (2012-04-18, DOS, 13KB, 下载4次)

http://www.pudn.com/Download/item/id/1834386.html

[控制台编程] DllTest

代码见MyDll和Test文件夹 前者为编译的vc++ dll 后者为调用该dll的控制台程序 因在本站上未搜到此类代码,特试后提供 仅供VC++ dll初学者揣摩
Code see MyDll former Test folder and compile vc++ dll which calls the dll for the program because the console is not found on the site to such code, especially after the test provided for VC++ dll beginners try to figure out (2011-09-25, Visual C++, 610KB, 下载4次)

http://www.pudn.com/Download/item/id/1654415.html

[控制台编程] Desktop

调度问题的回溯算法,算法中的经典问题。问题描述:假设有n个任务由k个可并行工作的机器完成。完成任务i需要的时间为ti。试设计一个算法找出完成这n个任务的最佳调度,使得完成全部任务的时间最早。
Scheduling problem backtracking algorithm is the classic problem. Problem Description: Suppose there are n-task by the k-parallel machine can be completed. The time required to complete the task i is ti. Try to design an algorithm to find completing these n-best task scheduling, making the earliest time to complete all tasks. (2010-02-19, Visual C++, 16KB, 下载78次)

http://www.pudn.com/Download/item/id/1065936.html

[控制台编程] BigInt

大整数(可高效计算数万位整数)四则运算的实现,采用了高效的9位并行计算。除法的实现更是采用了高效的二分试商...
Large integer (which can be tens of thousands of high-performance computing-bit integer) arithmetic to achieve efficient use of parallel computing 9. The division is the adoption of a more efficient test binary operators ... (2009-07-28, C/C++, 2KB, 下载30次)

http://www.pudn.com/Download/item/id/858223.html

[控制台编程] game3

一个小狗追踪人的程序,挺好玩的 还有,对数学建模有帮助
A dog to track people' s procedures were very good to play on the mathematical modeling help (2009-07-09, Visual C++, 3KB, 下载5次)

http://www.pudn.com/Download/item/id/837937.html

[控制台编程] Terminator

课程设计,适合初学者参考,就和小时候玩的但可游戏一样好。。。
Curriculum design, suitable for beginners and reference, and a child playing on the game as good as can be. . . (2009-07-02, C/C++, 2132KB, 下载4次)

http://www.pudn.com/Download/item/id/829894.html

[控制台编程] wpe0.9

这个我想不用说太多,WPE大部分玩网络游戏的人应该都认识.
Needless to say that I think too much, WPE most people who play online games should have been aware of. (2009-01-13, MultiPlatform, 360KB, 下载46次)

http://www.pudn.com/Download/item/id/630405.html

[控制台编程] 1

在windows 下教你如何定时关机,有兴趣的可以试一下
In the windows from time to time under the teach you how to shutdown, are interested can try (2008-12-31, Visual C++, 714KB, 下载2次)

http://www.pudn.com/Download/item/id/621050.html

[控制台编程] Mud

初学C++,试写了个小的文字游戏,望各位大哥指点 (2008-05-05, Visual C++, 48KB, 下载127次)

http://www.pudn.com/Download/item/id/453700.html

[控制台编程] Starlight_game

一个点灯游戏,欢迎学习下载,既能娱乐又能学习编程知识
A look over the game are welcome to learn from the download, both entertainment while learning programming knowledge (2008-05-02, DOS, 2KB, 下载2次)

http://www.pudn.com/Download/item/id/451198.html

[控制台编程] 逻辑等式化简

QM法化简 逻辑表达试的 计算机方法!!! langboy
QM Reduction Act logical expression of a computer test methods! ! ! Langboy (2006-01-04, C/C++, 501KB, 下载96次)

http://www.pudn.com/Download/item/id/138452.html
12
总计:23