2014年2月5日
摘要: 1、从git官网下载windows版本的git:http://git-scm.com/downloads2、一般使用默认设置即可:一路next,git安装完毕!3、但是如果这时你打开windows的cmd,在里面打git命令会提示“不是内部或外部命令,也不是可运行的程序”,想要直接在windows的... 阅读全文
posted @ 2014-02-05 14:33 EXLsunshine 阅读(164) 评论(0) 推荐(0) 编辑
  2013年8月25日
摘要: 原文:http://bbs.kafan.cn/thread-1401951-1-1.htmlhttp://bbs.kafan.cn/thread-1401951-1-1.html错误如下:名称:从: file:///D:/Program Files (x86)/Microsoft Visual St... 阅读全文
posted @ 2013-08-25 10:32 EXLsunshine 阅读(1585) 评论(0) 推荐(0) 编辑
  2013年8月11日
摘要: 1、用VS 2012 创建c++项目失败,提示未找到与约束 ContractName .............的错误 解决办法:下载VS 2012 补丁,很小的一个补丁,不过很管用 地址:http://www.microsoft.com/zh-cn/download/details.aspx?... 阅读全文
posted @ 2013-08-11 14:40 EXLsunshine 阅读(152) 评论(0) 推荐(0) 编辑
  2013年8月8日
摘要: 请下载后放大图片观看~~ 阅读全文
posted @ 2013-08-08 14:05 EXLsunshine 阅读(105) 评论(0) 推荐(0) 编辑
  2013年8月1日
摘要: 原文网址:http://dhtmlexamples.com/2012/02/27/using-the-typeahead-plugin-with-twitter-bootstrap-2-and-jquery/这个例子肯定能用,考到记事本里,然后另存为html,见证奇迹吧! Using ... 阅读全文
posted @ 2013-08-01 15:03 EXLsunshine 阅读(315) 评论(0) 推荐(0) 编辑
  2013年7月21日
摘要: LNK2019: unresolved external symbol _main referenced in function __main有人说这是因为静态动态引用引起的,但是!这些都没有解决我的问题我用VS 2012 里新建的工程编译时遇到了这个错误,后来我发现:虽然代码里#include了我... 阅读全文
posted @ 2013-07-21 15:44 EXLsunshine 阅读(486) 评论(0) 推荐(0) 编辑
  2013年6月20日
摘要: http://www.cnblogs.com/ymy124/archive/2012/04/16/2451433.htmlconst给人的第一印象就是定义常量。(1)const用于定义常量。 例如:const int N = 100;const int M = 200; 这样程序中只要用到 N、M ... 阅读全文
posted @ 2013-06-20 22:05 EXLsunshine 阅读(647) 评论(0) 推荐(0) 编辑
  2013年5月1日
摘要: 很水的题。。。不过纠结了好久,是因为左右引号的标志初始化错了,就应该初始化一次,结果每次都初始化了Orz#include #include char str[10000];int main(){ int i,n,left=1; while( (gets(str)) ) { n=strlen(str... 阅读全文
posted @ 2013-05-01 22:30 EXLsunshine 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 就是冒泡排序,然后记录一下一共交换了多少次原题:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=4&problem=235&mosmsg=Submissio... 阅读全文
posted @ 2013-05-01 21:44 EXLsunshine 阅读(184) 评论(0) 推荐(0) 编辑
  2013年4月30日
摘要: #include #include long x;long y;int n=2;int numLenth(long num){ int i=0; if(num==0) return 1; while(num) { num/=10; i++; } return i;}int split(int ... 阅读全文
posted @ 2013-04-30 21:17 EXLsunshine 阅读(169) 评论(0) 推荐(0) 编辑