PLC_变频器
上传时间: 2013-11-17
上传用户:jelenecheung
反复提示需要重新启动:在”运行“,输入”Regedit“打开注册表, 出如下的注册表键值”HKEY_LOCAL_MACHINE\SYSTEM\CurrentControl Set\Control\Session Manager\PendingFileRenameOperations” 显示出错消息1645”安装Microsoft Net Framework”时出错,返回代码1601,安装被取消:用户的操作系统DCOM组态出错。在“运行”中,输入“dcomcnfg.exe”回车。在弹出的DCOM组态属性设置对话框的”标准属性“选项卡中,不要同时选择”缺省验证级别“=”无”和“缺省身份更改级别‘=”隐名’。
上传时间: 2013-11-22
上传用户:myworkpost
其实打开一个观看地址,其他集的视频都会罗列出来;
上传时间: 2013-10-12
上传用户:洛木卓
这是一个卫星时钟的程序,组态开发者很实用呀。
上传时间: 2014-01-13
上传用户:iswlkje
C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264
标签: my_Include include define 3.141
上传时间: 2014-01-17
上传用户:epson850
很好的算法,可广泛用于各行业(如工控)计算组态
标签: 算法
上传时间: 2015-04-02
上传用户:gut1234567
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a,b,c依次序排列时,有13种不同的序列关系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要将n个数依序列,设计一个动态规划算法,计算出有多少种不同的序列关系, 要求算法只占用O(n),只耗时O(n*n).
上传时间: 2013-12-26
上传用户:siguazgb
c语言版的多项式曲线拟合。 用最小二乘法进行曲线拟合. 用p-1 次多项式进行拟合,p<= 10 x,y 的第0个域x[0],y[0],没有用,有效数据从x[1],y[1] 开始 nNodeNum,有效数据节点的个数。 b,为输出的多项式系数,b[i] 为b[i-1]次项。b[0],没有用。 b,有10个元素ok。
上传时间: 2014-01-12
上传用户:变形金刚
精心整理,吐血奉献 内容包括:论软件架构师的角色和培养:任职资格 1 C语言嵌入式系统编程修炼之背景篇 3 C语言嵌入式系统编程修炼之软件架构篇 6 C语言嵌入式系统编程修炼之性能优化 12 C语言嵌入式系统编程修炼之键盘操作 16 C语言嵌入式系统编程修炼之内存操作 19 C语言嵌入式系统编程修炼之屏幕操作 26
标签:
上传时间: 2013-12-24
上传用户:lacsx