查看JDK是否已经安装,可以在cmd窗口里输入java
-version,如果没有提示出错,就表示已经安装。查看JDK的安装路径,可以输入java -verbose,会返回很多信息,其中就包含了JDK的安装路径。
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
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
This post introduces how to deal with Number
Conversions with parseInt().
分类:
编程语言 时间:
2014-05-26 09:01:52
阅读次数:
204
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
二,TweenMax主类:这里分几个大块来介绍,分别是:第三个参数特有属性(29个),PlugIn(17个),公共属性(10个),公共方法(20个)。1,第三个参数特有属性(29个):这29个参数可以直接传入第三个OBJECT参数中,不会增加文件的大小。(1)delay
: Number:延迟开始,...
分类:
其他好文 时间:
2014-05-26 07:03:00
阅读次数:
332
#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
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
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