Aween

向.NET进发

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2006年5月2日

摘要: Javascript有许多内建的方法来产生对话框,如:window.alert(), window.confirm(),window.prompt().等。 然而IE提供更多的方法 阅读全文
posted @ 2006-05-02 12:30 Aween's Blog 阅读(416) 评论(0) 推荐(0) 编辑

2006年3月2日

摘要: /* CONVOLVE.C - Turbo C 2.0 implementation of image convolution */ /* ---------- by Wesley G. Faler. All code is "as is". There */ /* is NO copyright. Use this code as you will, and if you make */ /* money at it, good for you. */ 阅读全文
posted @ 2006-03-02 22:03 Aween's Blog 阅读(696) 评论(1) 推荐(0) 编辑

摘要: 使用计算机的人每时每刻都在与数打交道,在计算机内部,数是以二进制表示的,而我们习惯上使用的是十进 制数,所以计算机从我们这里接收到十进制数后,要经过翻译,把十进制数转换为二进制数才能进行处理,这 个过程是由计算机自动完成的。但是对程序员来说,有时需要把十进制数转换为二进制数、十六进制数和八进 制数,或者把十六进制数转换为十进制数等,这都不是一件轻松的工作,为了使这项工作变得轻松愉快,作者 用TUR... 阅读全文
posted @ 2006-03-02 22:03 Aween's Blog 阅读(2819) 评论(0) 推荐(0) 编辑

摘要: Turbo C 2.0 函数中文说明大全 -------------------------------------------------------------------------------- 分类函数,所在函数库为ctype.h int isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否则返回0 int isalnum(int ch) 若ch... 阅读全文
posted @ 2006-03-02 22:02 Aween's Blog 阅读(758) 评论(0) 推荐(0) 编辑

摘要: //字符串查找//程序在Borland C++3.1上编译通过#include //#include >i;}bool chazhao(char a[MS],char b[MS]){ int i; i=searchStr(a,b,1,1);if(i!=0){i=i-strlen(b)+1;cout<<i<<endl;}}//从s1中第n个开始查找s2第m个开始 返回s2的末尾在s1... 阅读全文
posted @ 2006-03-02 22:02 Aween's Blog 阅读(278) 评论(0) 推荐(0) 编辑