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

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

一个交互式的计算器。 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

[其他小程序] enc

C语言写的简易的文件加密/解密工具,将文件加密为sec文件,经测试加密后无法被其他程序识别。解密时可原封不动地变回原来的文件(经测试,图片、视频加密后解密均能打开和播放)。使用时(显示:Error, file can not be found的时候)输入一个质数密码:223092871(2到23所有质数相乘加一,不易被破解),按回车后就能开启加密/解密功能。显示What would you do?(1/2)时,1为加密整个文件夹的文件,2为解密整个文件夹的文件 务必注意:生成的exe文件名称必须为enc.exe,以避免解密时解密自己而造成无法解密
C language to write a simple file encryption/decryption tool, the file is encrypted as sec file, can not be recognized by other programs. Decryption can be intact to change back to the original file (after testing, pictures, video encryption can be decrypted to open and play). When using (display: Error, file can not be found) Enter a prime number Password: 223092871 (2 to 23 all prime multiplication plus one, not easy to be cracked), press Enter to turn on encryption/decryption function. Show what would you do? (1/2), 1 for encrypting the entire folder of the file, 2 for decrypting the entire folder of the file Be sure to note that the generated exe file name must be enc.exe to avoid decrypting itself while decrypting itself (2017-05-25, C/C++, 38KB, 下载2次)

http://www.pudn.com/Download/item/id/1495698980261527.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

[其他小程序] c

题目:输入某年某月某日,判断这一天是这一年的第几天? 1.程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊       情况,闰年且输入月份大于3时需考虑多加一天
Title: enter a certain period of a day, this is the one to judge the first few days this year? 1. Program Analysis: The March 5 as an example, should the first two months of the combined first, and then five days together with the first few days of this year, the special circumstances of the importation of leap year and the month when more than 3 considered more a day (2009-06-15, C/C++, 3KB, 下载3次)

http://www.pudn.com/Download/item/id/808659.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

[其他小程序] 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

[其他小程序] zuobiaozhuanhuan

本程序提供WGS-84、BJ54和Xi’an80下大地坐标、空间直角坐标以及高斯坐标的相互转换,不同椭球参数下的转换需通过空间直角坐标过渡,由于时间原因,高斯坐标正反算只在BJ54下进行。空间坐标的转换需要借助七参数,可手工输入,也可由文本文件中至少公共点平差计算得到(data.txt可用于七参数计算测试)。 计算过程: WGS-84 B=30.303622 L=114.212196 H =47.36 (经纬度采用度分秒联写) BLH ——>XYZ X=-2268156.8016 Y=5010324.6053 Z=3219239.5885 WGS-84 XYZ ——> BJ54 XYZ ( 参数均设为0, 值不变) BJ54 XYZ——> BLH B =30.303614 L=114.212196 H= -61.3351 BLH ——> xyH x=3376768.6854 y=534182.3886 H不变 (出于正反算方便的考虑,没有在y前加三度带投影带数,这里由中央子午线114可知为38,即y=38534182.3886) (2008-03-05, C/C++, 335KB, 下载608次)

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

[其他小程序] 角谷猜想

日本一位中学生发现一个奇妙的“定理”,请角谷教授证明 ,而教授无能为力,于是产生角谷猜想。猜想的内容是:任给一 个自然数,若为偶数除以2,若为奇数则乘3加1,得到一个新的 自然数后按照上面的法则继续演算,若干次后得到的结果必然为 1。请编程验证。 *问题分析与算法设计 本题是一个沿未获得一般证明的猜想,但屡试不爽,可以用 程序验证。 题目中给出的处理过程很清楚,算法不需特殊设计,可按照 题目的叙述直接进行证。
a Japanese secondary school students found a mysterious "theorem", please Kok Valley Professor certificate, and a professor to do so, it generated Kok Valley guess. The contents of the suspect : a natural for the few, if even for dividing the two, if odd, then x 3 plus 1, to be a new natural after a few accordance with the above rules to calculus, several times after the inevitable as a result. Please programming certification.* Analysis and design of the algorithm that is not agreed on a general proof of the conjecture, but their toll, can be used to verify. The title of the process is very clear, without special algorithm design, in accordance with the subject of the narrative directly certification. (2005-12-09, C/C++, 1KB, 下载4次)

http://www.pudn.com/Download/item/id/131695.html
123
总计:48