码迷,mamicode.com
首页 >  
搜索关键字:comare version number    ( 48018个结果
Windows下查看JDK是否安装以及安装路径
查看JDK是否已经安装,可以在cmd窗口里输入java -version,如果没有提示出错,就表示已经安装。查看JDK的安装路径,可以输入java -verbose,会返回很多信息,其中就包含了JDK的安装路径。
分类:Windows程序   时间:2014-05-26 10:05:17    阅读次数:344
Javascript判断是否是ipad的浏览器
ipad用的是Safari Mobile浏览器,访问的UA为:Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7...
分类:编程语言   时间:2014-05-26 10:00:50    阅读次数:351
LeetCode:3Sum Closest
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers....
分类:其他好文   时间:2014-05-26 09:58:20    阅读次数:220
JavaScript Patterns 2.8 Number Conversions with parseInt()
This post introduces how to deal with Number Conversions with parseInt().
分类:编程语言   时间:2014-05-26 09:01:52    阅读次数:204
ORACLE 查看版本号sql语句
select banner from sys.v_$version;SELECT * FROM NLS_DATABASE_PARAMETERS;select * from v$version;备份语句:select into from 须用 create table newtablename as ...
分类:数据库   时间:2014-05-26 07:35:45    阅读次数:282
查看一个进程打开的文件都有哪些
step 1pfile pidstep 2根据 inode number 查找 比如bash-2.05# pfiles 2605326053: python Current rlimit: 256 file descriptors 0: S_IFCHR mode:0620 dev:32,0 ...
分类:其他好文   时间:2014-05-26 07:30:09    阅读次数:329
flash TweenMax用法
二,TweenMax主类:这里分几个大块来介绍,分别是:第三个参数特有属性(29个),PlugIn(17个),公共属性(10个),公共方法(20个)。1,第三个参数特有属性(29个):这29个参数可以直接传入第三个OBJECT参数中,不会增加文件的大小。(1)delay : Number:延迟开始,...
分类:其他好文   时间:2014-05-26 07:03:00    阅读次数:332
c语言快速判断一个数是偶数还是奇数
#include int main() { int a; while(1) { printf("please input the number:\n"); scanf("%d",&a); if(a&1) { printf("%d是奇数\n",a); } else { printf("%d是偶数\n",a); } } return 0; }这...
分类:编程语言   时间:2014-05-26 03:36:15    阅读次数:367
LeetCode:3Sum Closest
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exact...
分类:其他好文   时间:2014-05-25 00:46:51    阅读次数:229
ProjectEuler 003题
1 //题目:The prime factors of 13195 are 5, 7, 13 and 29.2 //What is the largest prime factor of the number 600851475143 ? 1 #include 2 using namespace s...
分类:其他好文   时间:2014-05-24 10:01:21    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!