码迷,mamicode.com
首页 >  
搜索关键字:please update adt    ( 22253个结果
三个数由小到大排序
1 #include 2 3 int main(void) 4 { 5 int a,b,c; 6 int temp; 7 printf("please input a b c\n"); 8 scanf("%d %d %d",&a,&b,&c); 9 10 if(a>b)11 {12 te...
分类:其他好文   时间:2014-07-22 23:00:52    阅读次数:353
批处理判断是否特殊字符的实现代码(转自:www.jbxue.com)
分享一个批处理脚本,判断是不是特殊字符。原文地址:http://www.jbxue.com/article/17770.html用于判断输入的一个字符是否为"&^>中的符号。注意,匹配字符串中的空格不可省略!批处理代码:@echo offset Input=S set /p Input=Please...
分类:其他好文   时间:2014-07-22 23:00:34    阅读次数:394
判断是否是闰年
计算闰年的方法:如果某年能被4整除但不能被100整除,或者该年能被400整除则为闰年。(year%4==0&&year%100!=0)||year%400==0 1 #include 2 3 int main(void) 4 { 5 int year; 6 printf("please in...
分类:其他好文   时间:2014-07-22 23:00:32    阅读次数:247
(转载)burpsuit 突破上传文件限制
1.运行Burp site,点击Proxy标签,确认Options选项卡下,Proxy listeners的running运行正常(勾选状态为运行),如果端口打开失败,可能的原因是有程序占用了该端口,点击edit,在local listener port:输入框输入一个未占用的端口,点击update...
分类:其他好文   时间:2014-05-01 22:23:46    阅读次数:665
subversion javahl
新建android项目时,总是说"javahl, require version 1.8"云云。dpkg -l | grep libsvn-java1.6apt-get update还是1.6google:$ apt-get install subversion$ apt-get install l...
分类:编程语言   时间:2014-05-01 21:46:06    阅读次数:522
十进制转二进制
十进制转二进制的递归实现算法: 1 #include 2 void dectobi(int a); 3 4 int main() 5 { 6 int i; 7 printf("please input a decimical number\n"); 8 scanf("%...
分类:其他好文   时间:2014-05-01 19:19:33    阅读次数:397
使用ssh过程中对数据库进行update时报错
org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.NEVER) - turn your Session into FlushMode.AUTO or remove 'readOnly' marker from transaction definition...
分类:数据库   时间:2014-05-01 18:16:35    阅读次数:377
Everpad: 在linux(ubuntu)上最好的Evernote客户端,不再为linux没Evernote而苦恼
安装Everpad sudo add-apt-repository ppa:nvbn-rm/ppa sudo apt-get update sudo apt-get install everpad...
分类:系统相关   时间:2014-05-01 17:35:52    阅读次数:490
Eclipse启动时提示fail to create the Java Virtual Machine问题的解决
今天偶然打开Eclipse,发现无法打开,出现如下提示: 后来经过上网查询,发现是eclipse.ini文件的问题,打开eclipse安装目录下的eclipse.ini文件: -startup plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar --launcher.library plugins/org....
分类:编程语言   时间:2014-05-01 08:33:54    阅读次数:455
Cocos2d-x3.0 LoadingBar
.h中添加 int _count; Layout* layout; void update(float delta); layout = Layout::create(); layout->setSize(Size(widgetSize.width, widgetSize.height));...
分类:其他好文   时间:2014-04-30 22:28:39    阅读次数:401
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!