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

[其他小程序] 简单计算器

一个交互式的计算器。 1. 用顺序表来完成任意同维度向量的计算,包括加法、减法、夹角余弦值等。 2. 使用顺序表、链表来完成任意一元多项式的计算,包括加法、减法、乘法、导数(包括任意阶)等。 4. 四则运算表达式求值。 5. 含单变量的表达式求值。 6. 定义并运行简单函数。 7. 保留函数定义历史,并可以运行历史函数。 8. 函数的调用。 9. 操作数的各种字面常量的处理。 10. 支持矩阵的运算。
An interactive calculator. 1. Complete the calculation of any vector of the same dimension with the sequence table, including addition, subtraction, angle cosine value and so on. 2. Use order list and chain list to complete the calculation of any one-variable polynomial, including addition, subtraction, multiplication, derivative (including any order), etc. 4. Four Operational Expressions. 5. Evaluation of expressions with univariates. 6. Define and run simple functions. 7. Retain function definition history and run history function. 8. Call of function. 9. Processing of literal constants of operands. 10. Supporting matrix operations. (2019-05-12, C/C++, 1449KB, 下载17次)

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

[其他小程序] yuesifu

有N个旅客同乘一条船,因为严重超载,加上风高浪大,危险万分;因此船长告诉乘客,只有将全船一半的旅客投入海中,其余人才能幸免于难,无奈,大家只得同意这种办法,并议定N个人围成一圈,由第一个人数起,依次报数,数到第K人,便把他投入大海中,然后再从他的下一个人数起,数到第K人,再把他投入大海中,如此循环地进行,直到剩下N/2个乘客为止。问哪些位置是将被投入大海的位置?
There are N ride a boat with passengers because of severe overloading, coupled with high winds and big waves, extremely dangerous therefore captain told passengers, only half of the whole ship passengers into the sea, the other person can survive, but unfortunately, we had to agree with this approach, and agreed N individuals circle, starting from the first individual number, followed by the number reported, the number to the first K who put him into the sea, and then from his next number, the number of people to K , and then he put the sea, so the cycle manner, until the rest of N/2 passengers so far. Q. What position is the position to be put in the sea? (2013-06-26, Visual C++, 1KB, 下载2次)

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

[其他小程序] cc

计算器是我们生活中常用的工具,本文中我们将看到C语言在计算器程序中的应用并实现简单初步的计算。程序的编写基础是Tubro C2.0,它在tubro c的原有基础上实现了多汉字的支持方便了我们的使用。生成的程序可移植性强兼容性好。现在实现了加、减、乘、除、求幂、求模,求平方根,求Sin,求Cos,求Log10,以及一个时钟原代码。这个系统是基于软件发展的生命周期来研制的,它可以直接输入数学表达式,不需要任何转换,就可以直接输出数学四则运算的结果。本文主要介绍了程序的开发背景,开发的过程和所要完成的功能。重点的说明了系统设计思想,设计的步骤、难点技术和解决方案。
TURBO C (2013-03-22, C/C++, 31KB, 下载1次)

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

[其他小程序] jisuanqi

设计一个计算器,利用它可以进行简单的四则运算(加、减、乘、除、开方)等,但仅限于十进制下,此外还可以进行(八进制,十进制,十六进制)之间的相互转换。 要求:有简单的需求分析,功能设计,详细设计(程序流程),异常处理,测试,源程序清单,总结,具体格式见附件。 知识点: 掌握 图形用户界面设计; 掌握基本类的设计与使用; 掌握事件处理机制; 掌握使用异常处理方法。
Design a calculator, which allows you a simple four operations (addition, subtraction, multiplication, prescribing), but only to the decimal, in addition can also be (octal, decimal, hexadecimal) conversion. Requirements: a simple needs analysis, functional design, detailed design (program flow), exception handling, testing, source list, summary, the specific format in Annex. Point of knowledge: to master the design of graphical user interface master the basic design and use of the class master event handling mechanism to master the use of exception handling. (2012-06-08, Java, 2KB, 下载5次)

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

[其他小程序] Calculator

计算器功能(1)包含的功能有:加、减、乘、除运算,开方、求倒数、三角函数、对数指数、阶乘等的计算功能。 (2)计算功能基本上是用系统内部函数。 (3)“Clear”按钮可以清除所有已输入的数据从头计算,“Backspace”按钮可以实现退位功能, “Exit”按钮可以退出程序。
The calculator function (1) contains the functions: add, subtract, multiply, and in addition to the operations, square root, a reciprocal, trigonometric functions, the calculation of the index, factorial function. (2) The calculation function is basically a function within the system. (3) the " Clear" button to clear all entered data ab initio calculations, the " Backspace" button can achieve abdication, and " Exit" button to exit the program. (2012-05-24, Visual C++, 5464KB, 下载5次)

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

[其他小程序] choose

用c++编写的选票系统,并可统计相关得票情况
#include <iostream> using namespace std struct Person//声明结构体类型Person; { char name[20] int count } int main() { Person leader[3]={"aaa",0,"bbb",0,"ccc",0} //定义Person类型的数组,内容为当前候选人的姓名及得票数; char leader_name[20] //leader_name为投票人所选的人姓名; int i,j for(i=0 i<10 i++) { cin>>leader_name //先后输入十张票上所选的人的姓名; for(j=0 j<3 j++) { if(strcmp(leader_name,leader[j].name)==0) leader[j].count++ //所选人与候选人的姓名相同,则该候选人的票数加1; } } cout<<endl double round for(i=0 i<3 i++) { round=leader[i].count/10 cout<<leader[i].name<<":"<<"得票数:"<<leader[i].count<<"得票率:"<<round<<endl } return 0 } (2012-02-05, Visual C++, 834KB, 下载6次)

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

[其他小程序] InsertStr

题目:输入一个新的字符串,将所有字符串从大到小输出。 要求: 1.利用指针数组 2.编写函数 insert(char * name[], char* str, int *n) name代表指针数组(其指向的字符串已经从大到小排好序),*n代表当前指针数组的实际长度。 函数的功能是:将str指向的字符串的地址插入到name中适当的位置,使得name数组中各个元素所指向的字符串是按照大小顺序排列的。插入后*n的值加1. 4.main主函数的功能 [1]指针数组的定义和初始赋值 [2]输出指针数组所指向的字符串的内容 [3]调用insert函数 [4]输出更新后的指针数组所指向的字符串内容 5.所有关于数组的操作尽量使用指针
InsertStr (2010-10-12, Visual C++, 2KB, 下载6次)

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

[其他小程序] Auto-enter-your-password

有时候人们的帐号密码太多了,不方便记忆,而且按键容易被黑客程序记录,这样不安全,所以开发这个自动输入帐号密码的程序,其实就是自动按键,在启动时加如了IP验证,这样你可以指定只有部分IP才能使用,防止程序落到黑客手中。而且程序可以查看密保卡,对于密保卡的管理也有好处。
Sometimes people' s account passwords too many inconvenient memories, and keys easily be a hacker program records, so unsafe, so developers in this program automatically enter user names and passwords, in fact, automatic buttons, add at startup, such as the IP authentication, so that you can specify that only some of the IP can be used to prevent the program fall into the hands of hackers. And the program can view the secret security card, insurance card for the close management is also good. (2009-12-20, Visual Basic, 263KB, 下载113次)

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

[其他小程序] jiangshen

.学生的记录信息要保存在磁盘文件中(记录结构至少应包括以下四项:学号、姓名、累计次数、学分)。学分计算方法:在本学期内累计次数达到20次,可得到0.5学分,否则没有学分,新学期开始累计次数从0开始累计。在大学期间,最多可得到2学分。该系统具有如下功能: (1)学生记录输入。 (2)跑步签到(每签到一次,累计次数加1)。 (3)查询(可按学号、学分等进行查询)。 (4)插入新生的记录。
. Students to record information stored in the disk file (record structure of at least four should include the following: Student ID, name, the cumulative number of credits). Credits calculated as follows: During the semester with a total of 20 times the number of available credits 0.5, otherwise there is no credits, the cumulative number of the new semester started a total of from 0. At the university during the period up to receive 2 credits. The system has the following features: (1) student input record. (2) running attendance (per sign in once, the cumulative increase in the number 1). (3) query (according to study number, credit inquiries, etc.). (4) insert new records. (2009-07-08, Visual C++, 1KB, 下载2次)

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

[其他小程序] 000

18岁那年,欧文拿着借来的100英镑,在曼彻斯特创办了自己的工厂。20岁的时候,他为了求得更好的发展,把他的小工厂卖给了一个叫德林科沃特的 人,自己则受雇于他成为一个更大工厂的经理。在
STACK SEGMENT STACK DW 64 DUP(?) STACK ENDS DATA SEGMENT NUM DB 34H,45H,45H DATA ENDS CODE SEGMENT ASSUME CS:CODE, ds:data START: MOV AX,DATA MOV DS,AX MOV SI,OFFSET NUM MOV BL,[SI] CMP BL,[SI+1] JNE CMP13 CMP BL,[SI+2] JNE DISP1 JMP DISP2 CMP13: CMP BL,[SI+2] JNE CMP23 JMP DISP1 CMP23: MOV BL,[SI+1] CMP BL,[SI+2] JNE DISP0 JMP DISP1 DISP0: MOV AL,"0" JMP QUIT1 DISP1: MOV AL,"1" JMP QUIT1 DISP2: MOV AL,"2" QUIT1: MOV AH,01H INT 10H QUIT: JMP QUIT CODE ENDS END START (2009-05-11, Visual C++, 177KB, 下载2次)

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

[其他小程序] TheDesignAndEvolutionOfCpp

本书是由C++语言的设计师本人所写,描述C++语言的发展历史、设计理念及技术细节的著作。在计算机发展史上,这种从多方面多角度描述一种主流语言各个方面的综合性著作,至今我还只看到这一本。阅读本书,不仅可以了解有关C++语言的许多重要技术问题和细节,还可以进一步理解各种C++特征的设计出发点、设计过程中所考虑的方方面面问题,以及语言成形过程中的各种权衡与选择。 作为C++语言的创造者,作者对于自己的作品自然是珍爱有加。对某些针对C++语言的批论,本书中也有一些针锋相对的的比较尖锐的观点。但纵观全书,作者的观点和意见还是比较客观的,并没有什么过于情绪化的东西。
this book is written by master Bjarne Stroustrup. it s really worth to read it. (2009-03-10, C/C++, 14816KB, 下载2次)

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

[其他小程序] jishuqi

实现计算器的功能: 1、二进制、八进制、十进制及十六进制数的加、减、乘、除、乘方、取模等简单计算 2、科学计算函数,包括[反]正弦、[反]余弦、[反]正切、[反]余切、开方、指数等函数运行 3、以角度、弧度两种方式实现上述部分函数 4、具备历史计算的记忆功能 5、对不正确的表达式能指出其错误原因
Implementation calculator functions: one, binary, octal, decimal and hexadecimal number of add, subtract, multiply, divide, involution, such as easy calculation of modulus 2, scientific computing function, including the [Anti-] sinusoidal, [anti- ] cosine, [anti-] tangent, [anti-] Cotangent, prescribing, the index function, such as running 3 to the angle of curvature of two ways to achieve the above-mentioned part of function 4, with the history of computing and memory function 5, the incorrect expression can point out the reasons for their errors (2009-02-26, Visual C++, 293KB, 下载7次)

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

[其他小程序] ServerManager

我做的一个系统托盘程序(Delphi7),里面牵扯到dll动静态调用,程序可以缩小的系统托盘上,点击托盘图标,界面会弹出,而且使用了隐藏任务栏功能,还有资源文件的使用和制作方法,反正是一些软件开发很常用并且实用的Demo。要求管理员加精。
I do a system tray program (Delphi7), which involves static and dynamic dll call, the procedure can reduce the system tray, click the tray icon, the interface will pop up, and used the hide the taskbar features, as well as resource documents the use and production methods, anyway, are some very commonly used software development and practical Demo. Require additional fine administrator. (2009-01-07, Delphi, 869KB, 下载27次)

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

[其他小程序] GaussSeide

实验题目:求解线性代数方程组的迭代法 相关知识:求解线性代数方程组的Gauss-Seidel迭代法的计算公式如下 数据结构:一个一维数组和一个二维数组 算法设计:用Gauss-Seidel迭代法求解线性代数方程组的算法如下 第一步:对于i=1,2,…,n (取零向量为初始向量) 第二步:e←0 第三步:对于i=1,2,…,n ⑴ ⑵对于j=1,2,…,n但 ⑶ ⑷若 ,则 ⑸ 第四步:若 (预先给定的误差精度),则转到第二步 第五步:输出 并停止计算 编写代码:(略) 实验用例: 试验要求:利用Gauss-Seidel迭代法(或Jacobi迭代法)求解上述线性代数方程组(它的精确解为 )。
err (2008-12-01, Visual C++, 1KB, 下载10次)

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

[其他小程序] shuzhifenxi3

实验题目:曲线拟合的最小二乘法 相关知识:已知C[a,b]中函数f(x)的一组实验数据(xi,yi)(i=0,1,…,m),其中yi=f(xi)。设 是C[a,b]上线性无关函数族。在 中找函数f(x) 曲线拟合的最小二乘解 ,其法方程(组)为: 其中, k=0,1,…,n 特别是,求函数f(x) 曲线拟合的线性最小二乘解 的计算公式为: 数据结构:两个一维数组或一个二维数组 算法设计:(略) 编写代码:(略) 实验用例: 已知函数y=f(x)的一张表: x 0 10 20 30 40 50 60 70 80 90 y 68 67.1 66.4 65.6 64.6 61.8 61.0 60.8 60.4 60 试验要求:利用曲线拟合的线性最小二乘法求被逼近函数f(x)在点x=55处的近似值,并画出实验数据和直线。
err (2008-12-01, C/C++, 1KB, 下载29次)

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

[其他小程序] zgxq

本人机对弈程序采用了多种搜索算法.以下是本程序主要的类说明: 1.CEveluation类:估值类,对给定的棋盘进行估值. 2.CMoveGenerator类:走法产生器,对给定的棋盘局面搜索出所有可能的走法. 3.CSearchEngine类:搜索引擎基类. 4.CNegaMaxEngine类:负极大值法搜索引擎. 5.CAlphaBetaEngine类:采用了Alpha-Beta剪枝技术的搜索引擎. 6.CFAlphaBetaEngine类:fail-softalpha-beta搜索引擎. 7.CHistoryHeuristic类:历史启发类. 8.CAlphabeta_HHEngine类:带历史启发的Alpha-Beta搜索引擎. 9.CAspirationSearch类:渴望搜索引擎. 10.CIDAlphabetaEngine类:迭代深化搜索引擎. 11.CMTD_fEngine类:MTD(f)搜索引擎. 12.CTranspositionTable类:置换表. 13.CAlphaBeta_TTEngine类:加置换表的Alpha-Beta搜索引擎. 14.CPVS_Engine类:极小窗口搜索引擎. 15.CNegaScout_TT_HH类:使用了置换表和历史启发的NegaScout搜索引擎. 本程序具有悔棋,还原功能,可以记录走法,还可以进行布局.
err (2008-11-04, Visual C++, 196KB, 下载4次)

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

[其他小程序] maze1

maze1(USACO) 走迷宫,计算需要的最小步数。经典的Dijkstra算法,初始的图形转化成矩阵是关键。矩阵的维数没有必要等于节点数,可以直接在二维上计算。入口和出口没必要计算。注意fin会忽略空格。预处理的很多东西可以在后面直接做,没有必要在前面专门做。后来发现没有必要计算所有点到两个出口的距离,而可以直接从两个出口开始,计算他们到迷宫中各个格子的最长距离。 算法千辛万苦想出来了,就应该对自己有信心,出现错误了之后有可能是哪里有笔误产生的。尤其是跟踪结果发现有奇怪的地方的时候。
err (2008-09-27, Visual C++, 1KB, 下载6次)

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

[其他小程序] 25175xshy0912

25175 学生会员注册系统 2007 Build 0912 /Registration.ASP 学生注册系统主文件 报名内容{用户名,密码,确认密码,EMail,QQ号码 ,真实姓名 ,性别,年龄,家庭住址,电话,手机,身份证号码,密码提示问题,安全回答} /user_login.asp 通过注册的帐号:密码:验证码:进行登陆学生 /conn.asp 将此段改成你要的路径DataPath="/20070911baoming20/data/#123.mdb" /admin/login.asp 后台admin admin进行登陆管理,密码是加MD5加密 md5双重加密,防SQL注入,分页技术,用户群删, /admin_index.asp 服务器基本信息显示 /logout.asp 后台退出
25,175 student members Registration System 2007 Build 0912/Registration.ASP Student Registration System master file application content (user name, password, Confirm Password, EMail, QQ number, real name, gender, age, home address, telephone, mobile phone, identity card number , password, question, security answer)/user_login.asp through the Register Username: Password: Verification Code: for landing students/conn.asp the paragraph you want to change the path of DataPath = (2008-08-12, ASP, 241KB, 下载72次)

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

[其他小程序] JieMiJi

客户拿到后直接运行play.exe会出现未注册消息(你也可以加代码使产生其他效果).他想注册的话,要与作者联系(留下Email等),运行注册机 exe,然后把生成的顾客号返回给作者. 作者认同的话,就可运行私藏的解密机exe,输入他的顾客号,按"解密匙"按钮,把解密匙返回用户.用户把"解密匙"输入注册机exe,按"解密"按钮. 就完成注册了!(注:注册机与play.exe要同一目录下)
Customers to get directly running unregistered play.exe message will appear (you can also add code so that produce some other effect). He wanted to register the case, it is necessary to contact the author (left Email, etc.), running Zhuceji exe, and then generate customers return to the author. The author agrees that would be running the possession of the decryption machine exe, enter his customer number, press the (2008-06-05, Visual C++, 9KB, 下载10次)

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

[其他小程序] 20066169211139183

本程序是一个非常简单的计算器;能实现基本的加、减、乘、除的功能. 运行环境:WINDOWS系列 缺点: 只能通过键盘等输入设备输入参与运算的数。 软件本身不带输入功能。 这里只是提供一种计算的方法,通过完善之后,可以用于带有计算器功能 的嵌入式产品的开发研究中。 程序有待改进;增加更多功能。(如上面提到的...)。 欢迎使用该软件,只作学习研究用,严禁用于任何商业用途。 版权所有 违者必究
This procedure is a very simple calculator can realize the basic add, subtract, multiply, with the exception of functions. Runtime Environment: WINDOWS series Disadvantages: only through the keyboard input device, such as participation in computing the number of input. Software itself, without input capabilities. Here only to provide a method of calculation, through the improvement, the calculator can be used with embedded product development study. Procedures to be improved add more features. (Such as the above-mentioned ...)。 Welcome to use the software, only for study and research use, is strictly prohibited for any commercial purposes. All rights reserved rights reserved (2007-10-01, Visual C++, 1536KB, 下载11次)

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