参考博文:http://blog.csdn.net/gxf212/article/details/3510009class Base { static int
a = 1; public Base() { System.out.println(" 55555"); }...
分类:
编程语言 时间:
2014-05-09 10:45:09
阅读次数:
309
1 public class T008 { 2 public static void
main(String[] args) { 3 int[] num = { 3, 4, 5, 1, 2 }; 4
System.out.println(min(num, 5...
分类:
编程语言 时间:
2014-05-09 04:12:47
阅读次数:
326
1.循环 1 public class T009 { 2 public static void
main(String[] args){ 3 System.out.println(fibonacci(3)); 4 } 5 public static
long ...
分类:
编程语言 时间:
2014-05-09 03:58:09
阅读次数:
270
1.bat 启动java main函数
1.将project导出JAR,过程中注意选择main class
2.新建bat,设置环境变量
3.1启动程序,如果想在黑窗口中打印数字,可以system.out,程序运行万
@echo off
@setlocal
set JAVA_HOME=jdk1.6.0_25
set PATH=%JAVA_HOME%\bin;%JAVA_HOME%\jre...
分类:
编程语言 时间:
2014-05-09 02:23:42
阅读次数:
394
1、import java.io.*;//写进文档,然后又在显示器显示出来。public class
fileinputstream{public static void main(String[] args) throws IOException
{DataOutputStream out = n...
分类:
编程语言 时间:
2014-05-08 15:40:06
阅读次数:
376
总是忘记, 备份一下,方便下次用.第一种:File directory = new
File("");//参数为空String courseFile = directory.getCanonicalPath()
;System.out.println(courseFile);结果:C:\Docume...
分类:
编程语言 时间:
2014-05-08 12:43:50
阅读次数:
343
Problem Description
有一棵 n 个节点的树,树上每个节点都有一个正整数权值。如果一个点被选择了,那么在树上和它相邻的点都不能被选择。求选出的点的权值和最大是多少?
Input
第一行包含一个整数 n 。
接下来的一行包含 n 个正整数,第 i 个正整数代表点 i 的权值。
接下来一共 n-1 行,每行描述树上的一条边。
Out...
分类:
其他好文 时间:
2014-05-08 04:55:03
阅读次数:
282
当我们修改了frameworks后可能出现:
make: *** [out/target/common/obj/PACKAGING/checkapi-current-timestamp] 错误 38
解决办法:make update-api
在Android中添加物理按键:KEYCODE_HELP
1、Android 增加按键:
ScanCode -> KeyCodeLabel ...
分类:
移动开发 时间:
2014-05-08 04:43:52
阅读次数:
468
①打印:***************for(intx=1;x<=5;x++){
for(inty=x;y<=5;y++){
System.out.print("*");//向下一般的格式for(inty=x;y<=5;y++)
}
System.out.println();
}②打印:***************for(intx=1;x<=5;x++){
for(inty=1;y<=x;y++){
System.out.print("*");//..
分类:
编程语言 时间:
2014-05-08 03:41:13
阅读次数:
295
1.创建新的字符串 1 public class T004 { 2 public static
void main(String[] args){ 3 System.out.println(replaceBlank("we are happy")); 4
} 5 ...
分类:
编程语言 时间:
2014-05-08 01:08:18
阅读次数:
364