主机软件博客 提供cPanel/WHMCS/DirectAdmin/Onapp等文章和教程 Main menuSkip to primary contentSkip to secondary contentSearch …
分类:Linux系统
CheckInstall在CentOS6上无法编译使用的解决办法,installwatch.c:3080: error: conflicting types
编辑installwatch.c at line 3080, change: int scandir( const char *dir,struct dirent ***namelist, int (*select)(c…
opencv1.0安装 ../../cxcore/include/cxmisc.h:133:6: error: #elif with no expression
解决办法:修改cxmisc.h,在133行。把最后一个elif换成else
Microsoft Platform SDK 选择及在vc++6.0中的配置
Windows Platform SDK Download Sites: Windows Server 2003 PSDK February 2003 Edition,可以和VC6一起使用、并支持各种目标OS的最后一个版…
甲骨文发布Java SE 7正式版
北京时间7月29日上午消息,甲骨文公司今天宣布了Java SE 7的首个正式版,这也是自2006年12月Sun发布Java SE 6以来的首个重要版本更新。 历时5年,Java 7终于发布 据Oracle官网介绍,Ja…
QQ斗地主棋牌游戏VC 源代码
一款QQ斗地主游戏源代码,包括服务端和客户端源代码。本程序采用c++语言编写。 下载地址:QQ斗地主棋牌游戏VC
C#“字符转成ASCII码,ASCII码转成字符”代码
1.字符转换成对应ASCII码: public static int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncod…
C#求100以内的素数
具体代码如下: using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication6 { …