生平第一次过百~赞一个~
[ 2009-03-27 11:50:36 | Author: adobo ]
#include <iostream> //使用头文件
using namespace std; //命名空间
void main() //主函数,返回值为INT型
{
int *pt=new int;
double *pn=new double;
*pt=10000;
*pn=10000000.10;
cout<<"int *pt="<<*pt<<",The location is:"<<pt<<endl;
cout<<"double *pn="<<*pn<<",The location is:"<<pn<<endl;
cout<<"size of *pt="<<sizeof(*pt)<<",size of pt="<<sizeof(pt)<<endl;
cout<<"size of *pn="<<sizeof(*pn)<<",size of pn="<<sizeof(pn)<<endl;
cin.get();
}
using namespace std; //命名空间
void main() //主函数,返回值为INT型
{
int *pt=new int;
double *pn=new double;
*pt=10000;
*pn=10000000.10;
cout<<"int *pt="<<*pt<<",The location is:"<<pt<<endl;
cout<<"double *pn="<<*pn<<",The location is:"<<pn<<endl;
cout<<"size of *pt="<<sizeof(*pt)<<",size of pt="<<sizeof(pt)<<endl;
cout<<"size of *pn="<<sizeof(*pn)<<",size of pn="<<sizeof(pn)<<endl;
cin.get();
}
空中充值代理服务系统全国通用版
[ 2009-03-24 16:19:40 | Author: adobo ]
本程序已启用专用发布页面
地址
http://i.beyourman.com
空中充值代理服务系统
----------------------------------------------------------------------------------------------------------------------------------
好久前的了,不知道现在还好不好用,因为论坛备案的事情,论坛关闭了,好多网友说下载不了了!
那现在我在这恢复下载吧!目标不明确,所以这个软件暂时停止开发了!哎~
Click Here To Download
...
Read More...
地址
http://i.beyourman.com
空中充值代理服务系统
----------------------------------------------------------------------------------------------------------------------------------
好久前的了,不知道现在还好不好用,因为论坛备案的事情,论坛关闭了,好多网友说下载不了了!
那现在我在这恢复下载吧!目标不明确,所以这个软件暂时停止开发了!哎~
...
Read More...
字符串数组的操作练习
[ 2009-03-24 11:53:02 | Author: adobo ]
#include <iostream>
#include <cstring>
int main()
{
using namespace std;
const int iSize=15;//
char cYourName[iSize];
char cMyName[iSize]="AiYunchao";
cout<<"Hello,My Name is "<<cMyNam e<<endl;
cout<<"What\'s is your name?"<<endl;
cin>>cYourName;
cout<<"Yeah,"<<cYourName<<",Your name has "<<strlen(cYourName)<<" chars"<<endl;//测试输入名称的长度,strlen库函数来自#include <cstring>
cout<<"It spands ...
Read More...
#include <cstring>
int main()
{
using namespace std;
const int iSize=15;//
char cYourName[iSize];
char cMyName[iSize]="AiYunchao";
cout<<"Hello,My Name is "<<cMyNam e<<endl;
cout<<"What\'s is your name?"<<endl;
cin>>cYourName;
cout<<"Yeah,"<<cYourName<<",Your name has "<<strlen(cYourName)<<" chars"<<endl;//测试输入名称的长度,strlen库函数来自#include <cstring>
cout<<"It spands ...
Read More...
开始学习C++,第一个完整程序
[ 2009-03-24 00:24:12 | Author: adobo ]
//这是一个将秒转换成几天几时几分几秒的程序
#include <iostream> //使用头文件
using namespace std; //命名空间
const int HOUR_TO_DAY=24; //CONST限定符,定义常量
const int MIN_TO_HOUR=60;
const int SEC_TO_MIN=60;
int main() //主函数,返回值为INT型
{
long lSec; //定义长整型
cout<<"Enter The Seconds:______\b\b\b\b\b\b"; //采用下划线
cin>>lSec;//输入
int iDay,iHour,iMin,iSec;//定义天,时,分,秒
iSec=lSec%SEC_TO_MIN;//计算秒
iMin=((lSec-iSec)/SEC_TO_MIN)%MIN_TO_HOUR;//计算分
...
Read More...
#include <iostream> //使用头文件
using namespace std; //命名空间
const int HOUR_TO_DAY=24; //CONST限定符,定义常量
const int MIN_TO_HOUR=60;
const int SEC_TO_MIN=60;
int main() //主函数,返回值为INT型
{
long lSec; //定义长整型
cout<<"Enter The Seconds:______\b\b\b\b\b\b"; //采用下划线
cin>>lSec;//输入
int iDay,iHour,iMin,iSec;//定义天,时,分,秒
iSec=lSec%SEC_TO_MIN;//计算秒
iMin=((lSec-iSec)/SEC_TO_MIN)%MIN_TO_HOUR;//计算分
...
Read More...
扬州工业职业技术学院版《北京欢迎你》
[ 2009-03-21 12:07:57 | Author: adobo ]
域名备案批量查询工具[已更换地址]
[ 2009-03-19 09:51:56 | Author: adobo ]
最新版为V3.1【2010年8月8日晚更新】有需要请联系作者 QQ:100004117
----------------------------------------------------------------------------------------------------------------------------
为了工作而工作...个人觉得这是最好的境界!可事实这样的人很少,我还是为了生存而工作!
过完年过来,电信就一直在抓备案的事情,其实是低俗网站的清理!害得我们不知道加班了多少次!
这个是此次专项行动的产物,虽然做的很粗糙,但感觉还蛮好用!不准备升级,因为估计过了两会就没用了大概!因为GCD嘛~基本都这样!
Click Here To Download
...
Read More...
----------------------------------------------------------------------------------------------------------------------------
为了工作而工作...个人觉得这是最好的境界!可事实这样的人很少,我还是为了生存而工作!
过完年过来,电信就一直在抓备案的事情,其实是低俗网站的清理!害得我们不知道加班了多少次!
这个是此次专项行动的产物,虽然做的很粗糙,但感觉还蛮好用!不准备升级,因为估计过了两会就没用了大概!因为GCD嘛~基本都这样!
...
Read More...
msxml3.dll 错误 '800c0005' 的解决方案汇总
[ 2009-03-13 08:50:12 | Author: adobo ]
在运用xmlhttp组件编写程序中,会碰到 ”msxml3.dll 错误 ‘800c0005’ 系统未找到指定的资源。” 这种错误,网上对这种错误的产生原因有很多钟解释,大体说是因为防火墙或UDP站口权限造成了,也说了相应的解决办法。其它有时候也未必。其实错误的描述中就说出了主要的原因 ”系统未找到指定的资源” 。这种错误都是出现在调用了 xmlhttp 组件的 Open方法,接着再用Send方法后造成的。当open方法的的 url 参数无法访问时,就会造成 8000005 错误。并且一旦产生这种错误,就会导致应用程序终止,无法继续操作。大多数的程序是这样写的:
Function functionName(pararm …)
Dim Http
Set Http=Server.CreateObject(”MSXML2.XMLHTTP.4.0″)
...
Read More...
Function functionName(pararm …)
Dim Http
Set Http=Server.CreateObject(”MSXML2.XMLHTTP.4.0″)
...
Read More...








