资源列表
Form1
- 大学课设论文使用vb的数据库的建立-人事管理系统-University of class-based paper the establishment of a database using vb- Personnel Management System
Untitled1
- 在西方,星期五和数字13都代表着坏运气,两个不幸的个体最后结合成超级不幸的一天。所以,不管哪个月的十三日又恰逢星期五就叫“黑色星期五”。 输入: 年份 输出: 判断该年是否包含黑色星期五,如包含,给出具体日期-In the West, Friday and the number 13 represents the bad luck the last two unfortunate individuals together to form super-sad day. Therefore, no
tigExit
- 数据库的触发器,一个非常常用的功能 非常实用 -sql server tigger
20120505
- 判断一个项链中所有颜色的珠子最少要多少个。-Judge a necklace of all the colors of the beads at least to many.
jquery.cookie
- jquerycookie轻量级插件,方法简单易用!-jquerycookie Lightweight plug-in, the method is simple and easy to use!
1
- 、声明一个CPU类,包含等级(rank)、频率(freauency)、电压(voltage)等属性,有两个公有成员函数run、stop。其中rank为枚举类型,声明为enum CPU_Rank { p1=1,p2,p3,p4,p5,p6,p7},frequency为单位是MHz的整形数,voltage为浮点型的电压值。观察构造函数和析构函数的调用顺序。-creat a class CPU which includes"rank " "frequency" "voltage". "frequenc
SCIdebugger
- 带时间提示的串口调试器,代码内指定串口号和模式,可以接收串口数据并在每一行显示收到的时间距离第一行的差值。-With time suggest serial debugger, code specified in the serial number and model, you can receive serial data and the time of receipt of each line shows the difference from the first row.
AFIncrementalStore-master
- afincrementalstore是一个用AFNetworking自动请求资源的属性和关系是必要的nsincrementalstore类。-AFIncrementalStore was an NSIncrementalStore subclass that used AFNetworking to automatically request resources as properties and relationships were needed.
ProcessIsExist
- 判断进程是否已经存在,运行中! 如果进程在系统中已经存在,则不启动程序-Determine whether the process already exists, run! Start the program if the process already exists in the system, no
BTCS
- 热传导方程BTCS格式FORTRAN计算程序。-Heat transfer equation BTCS format FORTRAN calculation program.
前缀码判定
- 前缀码:任何一个字符的编码都不是同一字符集中另一个字符的编码的前缀。 请编写一个程序,判断输入的n个由1和0组成的编码是否为前缀码。如果这n个编码是前缀码,则输出”YES”;否则输出第一个与前面编码发生矛盾的编码。 输入: 第1行为n(表示下面有n行编码) 第2~n+1行为n个由0或1组成的编码 输出:判断结果 例如,如果输入: 5 00 01 10 110 111 每一个字符均不是其他字符编码的前缀,所以,输出:YES