码迷,mamicode.com
首页 >  
搜索关键字:if_else    ( 23991个结果
九度 1108
#include #include #include using namespace std; #ifdef ONLINE_JUDGE #define FINPUT(file) 0 #define FOUTPUT(file) 0 #else...
分类:其他好文   时间:2014-05-10 04:48:25    阅读次数:287
九度 1121
#include #include #include using namespace std; #ifdef ONLINE_JUDGE #define FINPUT(file) 0 #define FOUTPUT(file) 0 #else ...
分类:其他好文   时间:2014-05-10 04:36:26    阅读次数:269
九度 1101
#include #ifdef ONLINE_JUDGE #define FINPUT(file) 0 #define FOUTPUT(file) 0 #else #define FINPUT(file) freopen(fi...
分类:其他好文   时间:2014-05-10 03:38:02    阅读次数:270
分行模块,自动识别英文和型号数[推荐精华]
Function cuttextlen(intext, lens) If Len(intext) cuttextlen = intext Else tmptext = intext GetTexts = "" Do While Not Len(tmptext) GetTexts = GetTexts + Left(tmptext, lens) tmptext = Right...
分类:其他好文   时间:2014-05-09 22:22:08    阅读次数:320
jquery自己手写表单验证
/*验证邮箱格式*/ function checkEmail(strEmail){ if(!/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/ .test(strEmail)){ return false; } else ...
分类:Web程序   时间:2014-05-09 20:02:19    阅读次数:482
编译系统对跨平台代码的支持
问题起因项目需要跑在不同的平台上不希望代码中掺杂大量的define宏做平台判断(有洁癖呀~~~)定义一些通用宏来处理只能解决一些类型差异的问题处理将跨平台代码写入不同的文件夹下 os/linux 和 os/win在外部暴露的.h文件加入判断宏//file: public.h #ifdef WIN32 #include "os/windows/public.h" #else #include "os...
分类:其他好文   时间:2014-05-09 14:46:23    阅读次数:246
使用FSO按文件大小浏览文件目录并进行删除操作
function JudgeParaRegular(intID)  if intID JudgeParaRegular=intId  else  Response.Write "输入错误!"  Response.End  end if  end function  intFileSize=JudgeParaRegular(Request.QueryString("intFileSi...
分类:其他好文   时间:2014-05-09 14:39:32    阅读次数:299
函数返回出口唯一
void fun(char *str){ char *a = new char[strlen(str)+1]; memcpy(a, str, strlen(str)+1); if (...) { return; } else if (...) {return; } delete a; return;...
分类:其他好文   时间:2014-05-09 07:35:24    阅读次数:257
ajax
初始化对象并发出XMLHttpRequest请求var xmlhttp; if(window.XMLHttpRequest){ xmlhttp = new XMLHttpRequest(); }else if(window.ActiveXObject){ xmlhttp = new ActiveXO...
分类:其他好文   时间:2014-05-09 03:06:35    阅读次数:267
2014-05-07 总结
AJAX基础1、AJAX中最主要的技术 :XMLHttpRequest2、不同的浏览器的使用: IE浏览器的使用 if(window.ActiveXObject){ ajaxObj = new ActiveXObject("MICROSOFT.XMLHTTP"); } 其它浏览器的使用 else ....
分类:其他好文   时间:2014-05-08 09:53:56    阅读次数:323
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!