http://zd.163.com/m/zhenyan/js很厉害,有很多值得学习的地方,记录下来。http://res.nie.netease.com/zdcq/qt/13/0625_zhenyan/js/index.jsvar ZANTEMP;//cookiesjQuery.cookie = f...
分类:
Web程序 时间:
2014-09-02 19:32:35
阅读次数:
441
http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1184
给定原字符串,和需要删掉的字符串集,然后输出删除后的字符串,如果长度变为0,输出LOSER。
考验编码能力 !!
#include
#include
#include
using namespace std;
char ss[10][10]={"HATE","...
分类:
其他好文 时间:
2014-09-02 17:57:35
阅读次数:
176
纯模拟
http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1190
#include
int main()
{
//freopen("in.txt","r",stdin);
int k,i,a,b,sum1,sum2;
char x,y;
scanf("%d",&k);
...
分类:
其他好文 时间:
2014-09-02 17:55:24
阅读次数:
197
1.首先在程序包管理控制台输入:enable-migrations-force,然后回车;2.然后会出现Migrations文件夹,打开Configuration.cs文件,将AutomaticMigrationsEnabled值改为true.3.最后在程序包管理控制台输入:update-datab...
分类:
数据库 时间:
2014-09-02 17:36:14
阅读次数:
217
在git for windows里面不能commit修改,提示open shellopen shell以后,使用git add [filename],会报错:fatal: Unable to create './.git/index.lock': File exists. If no other g...
http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1185
判断 x3+y3 = c 是否存在正整数解,2≤c≤109
首先把给定范围内的所有情况打表用数组保存,然后直接二分查找c即可。
#include
#include
using namespace std;
int cnt,a[1010000];
bool fin...
分类:
其他好文 时间:
2014-09-02 15:52:14
阅读次数:
248
名称类型说明Guestbook模块后台控制器index模块前台控制器Install安装文件夹├templates├config.inc.php├extention.inc.php├guestbook.sql├model.php├module.sql┗languages前台模板准备文件夹模块配置文件安...
分类:
Web程序 时间:
2014-09-02 15:48:14
阅读次数:
206
1.先在本机配置JAVA环境,网上同类教程已经很多了2.进入安卓SDK官网:http://developer.android.com/sdk/index.htmlDevelop - Tools 点击Download Eclipse ADT在下载下来的压缩包中,包含了Eclipse(IDE),SDK,...
分类:
移动开发 时间:
2014-09-02 15:41:54
阅读次数:
195
首页http://localhost/index.php?m=yp&c=com_index&userid=10产品:http://localhost/index.php?m=yp&c=com_index&a=model&modelid=13&userid=10产品单页:http://localhos...
分类:
Web程序 时间:
2014-09-02 15:38:54
阅读次数:
165
http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1173
纯模拟,按步骤一个个来 判断就行。
#include
#include
int main()
{
//freopen("a.txt","r",stdin);
char map[10][10];
int t,i,j,s1,s2;
...
分类:
其他好文 时间:
2014-09-02 14:17:24
阅读次数:
212